From e4cad2249e1ba5a55134b8852cf0fb333928d84d Mon Sep 17 00:00:00 2001 From: Mehdi Eloualy <92476321+meel-hd@users.noreply.github.com> Date: Wed, 28 Aug 2024 10:28:45 +0100 Subject: [PATCH] Update publish.yml --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4f08b2a..9af56fe 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 @@ -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