Skip to content

Commit

Permalink
Update package_and_release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
God-2077 authored Jul 19, 2024
1 parent f083361 commit bbb56b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/package_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ jobs:
shell: pwsh
run: |
$env:GITHUB_TOKEN | Out-File -FilePath gh_token.txt -NoNewline;
gh auth login --with-token < gh_token.txt;
$token = Get-Content gh_token.txt;
gh auth login --with-token $token;
Remove-Item gh_token.txt
- name: Create Release and Upload Assets
Expand Down

0 comments on commit bbb56b9

Please sign in to comment.