We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a24c607 commit 4d514a2Copy full SHA for 4d514a2
.github/workflows/deploy.yml
@@ -33,15 +33,15 @@ jobs:
33
34
- name: Get version
35
id: get_version
36
- run: echo "version=$(cat Cargo.toml | grep version | head -n1 | cut -d '"' -f2)" >> "$GITHUB_OUTPUT"
+ run: echo "version=$(grep version Cargo.toml | head -n1 | cut -d '"' -f2)" >> "$GITHUB_OUTPUT"
37
38
- uses: rickstaa/action-create-tag@v1
39
id: tag_create
40
with:
41
tag: v${{ steps.get_version.outputs.version }}
42
43
- name: Create Release
44
- if: !steps.tag_create.outputs.tag_exists
+ if: ${{ !steps.tag_create.outputs.tag_exists }}
45
uses: actions/create-release@v1
46
env:
47
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments