Skip to content

Commit

Permalink
Merge pull request #298 from SimonStnn/bugfix/fix-build-and-release-g…
Browse files Browse the repository at this point in the history
…h-action-3

Fix permission error in gh action
  • Loading branch information
SimonStnn authored Aug 7, 2024
2 parents 5050794 + 306acba commit 8403804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
sudo type -p curl >/dev/null || (sudo apt update && sudo apt install -y curl)
sudo curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
sudo chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg
sudo echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null
sudo echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
sudo apt update
sudo apt install gh -y
Expand Down

0 comments on commit 8403804

Please sign in to comment.