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 14c0eb2 commit aac5c4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/set-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
echo ::set-output name=version::$plain_tag
- name: Set version
run: ./scripts/set-version.sh ${{ version }}
run: ./scripts/set-version.sh ${{ steps.Version.outputs.version }}

- name: Commit new version
uses: stefanzweifel/git-auto-commit-action@v5
Expand All @@ -40,9 +40,9 @@ jobs:
uses: rickstaa/action-create-tag@v1
id: "tag_create"
with:
tag: "v${{ version }}"
tag: "v${{ steps.Version.outputs.version }}"
tag_exists_error: false
message: "Release version: ${{ version }}"
message: "Release version: ${{ steps.Version.outputs.version }}"
token: ${{ secrets.PAT }}
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
Expand All @@ -54,7 +54,7 @@ jobs:
tag: "latest"
tag_exists_error: false
force_push_tag: true
message: "Release version: ${{ version }}"
message: "Release version: ${{ steps.Version.outputs.version }}"
token: ${{ secrets.PAT }}
env:
GITHUB_TOKEN: ${{ secrets.PAT }}

0 comments on commit aac5c4a

Please sign in to comment.