Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
meel-hd authored Aug 28, 2024
1 parent e9feb33 commit e4cad22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]

runs-on: ${"${{ matrix.platform }}"}
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: setup node
Expand All @@ -30,9 +30,9 @@ jobs:
run: yarn && yarn tauri icon && yarn tauri build
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${"${{ secrets.GITHUB_TOKEN }}"}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
tagName: app-v__VERSION__ # the action automatically replaces __VERSION__ with the app version
releaseName: 'App v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
Expand Down

0 comments on commit e4cad22

Please sign in to comment.