File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,10 +54,12 @@ jobs:
5454
5555 - name : Get package version
5656 id : package-version
57+ shell : bash
5758 run : echo "version=v$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
5859
5960 - name : Check if version tag exists
6061 id : tag-exists
62+ shell : bash
6163 run : |
6264 if git rev-parse "${{ steps.package-version.outputs.version }}" >/dev/null 2>&1; then
6365 echo "exists=true" >> $GITHUB_OUTPUT
6870 - name : Generate release notes
6971 id : release-notes
7072 if : github.ref == 'refs/heads/main' && steps.tag-exists.outputs.exists == 'false'
73+ shell : bash
7174 run : |
7275 LATEST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "")
7376 if [ -n "$LATEST_TAG" ]; then
9396 fi
9497
9598 - name : Sync Tauri version with package.json
99+ shell : bash
96100 run : |
97101 VERSION=$(node -p "require('./package.json').version")
98102 node -e "
You can’t perform that action at this time.
0 commit comments