Skip to content

Commit

Permalink
use github.workspace instead of env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
filleduchaos committed Sep 10, 2024
1 parent 08e3650 commit 5268169
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 @@ -70,9 +70,9 @@ jobs:
run: |
rustup target add x86_64-apple-darwin
pnpm install
node ${{ GITHUB_WORKSPACE }}/.github/prebuild.js x86_64
node ${{ github.workspace }}/.github/prebuild.js x86_64
pnpm tauri build --target x86_64-apple-darwin
node ${{ GITHUB_WORKSPACE }}/.github/prebuild.js aarch64
node ${{ github.workspace }}/.github/prebuild.js aarch64
pnpm tauri build --target aarch64-apple-darwin
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 5268169

Please sign in to comment.