Skip to content

Commit

Permalink
chore: test using action for split
Browse files Browse the repository at this point in the history
  • Loading branch information
jag3dagster committed Feb 4, 2024
1 parent 5e4f472 commit 8aa5157
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:

steps:
- name: Split tag
env:
TAG: ${{ github.ref_name }}
uses: jungwinter/[email protected]
id: split
run: |
echo "project=${{ TAG##/* }}" >> $GITHUB_OUTPUT
echo "version=${{ TAG##*/ }}" >> $GITHUB_OUTPUT
with:
msg: ${{ github.ref_name }}
separator: '/'

- name: Test tag split
- name: Test split
run: |
echo ${{ steps.split.outputs.project }}
echo ${{ steps.split.outputs.verison }}
echo ${{ steps.split.outputs._1 }}
echo ${{ steps.split.outputs._2 }}
# - name: Checkout source code
# uses: actions/[email protected]
Expand Down

0 comments on commit 8aa5157

Please sign in to comment.