Skip to content

Commit

Permalink
Tauri build changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Isthisanmol committed Aug 11, 2024
1 parent dcc1a3f commit f4176fd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ tauri-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ jobs:
steps:
- name: Check for GITHUB_TOKEN
run: |
if (-z $ENV:${{secrets.GITHUB_TOKEN}}); then
echo "You must provide a GITHUB_TOKEN secret for this repository."
exit 1
fi
if (-not $env:${{secrets.GITHUB_TOKEN}})
{
Write-Host "You must provide a GITHUB_TOKEN secret for this repository."
exit 1
}
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit f4176fd

Please sign in to comment.