Skip to content

Commit

Permalink
Merge pull request #19 from thep0y/main
Browse files Browse the repository at this point in the history
chore: 修复 action 配置错误
  • Loading branch information
thep0y authored Jan 18, 2024
2 parents 1baf195 + 37b03fb commit de6f309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ jobs:
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
with:
tagName: ${{ format('v{0}}', env.BUILD_VERSION == '' && '__VERSION__' || env.BUILD_VERSION) }}
releaseName: ${{ format('v{0}}', env.BUILD_VERSION == '' && '__VERSION__' || env.BUILD_VERSION) }}
tagName: ${{ format('v{0}', env.BUILD_VERSION == '' && '__VERSION__' || env.BUILD_VERSION) }}
releaseName: ${{ format('v{0}', env.BUILD_VERSION == '' && '__VERSION__' || env.BUILD_VERSION) }}
releaseBody: "See the assets to download this version and install."
releaseDraft: true
prerelease: false
Expand Down

0 comments on commit de6f309

Please sign in to comment.