Skip to content

Commit

Permalink
Fixing syntax error on github actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
Guney Saramali committed Jun 18, 2024
1 parent c2f771e commit 1bdf804
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/set-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
ref: master
token: ${{ secrets.PAT }}

- name: set_version
- name: split_version
run: |
export plain_tag=$(TAG_NAME=${{ github.ref_name }}; echo "$TAG_NAME" | cut -d "-" -f 2)
echo "name=${plain_tag}" >> $GITHUB_OUTPUT
echo "version=${plain_tag}" >> $GITHUB_OUTPUT
- name: Set version
run: ./scripts/set-version.sh ${{ steps.version.set_version.version }}
run: ./scripts/set-version.sh ${{ steps.version.split_version.version }}

- name: Commit new version
uses: stefanzweifel/git-auto-commit-action@v5
Expand Down

0 comments on commit 1bdf804

Please sign in to comment.