geteduroam / linux-app

geteduroam Linux client
BSD 3-Clause "New" or "Revised" License
19 stars 3 forks source link

added package signing and gpg_keys directory, to store public keys #34

Closed camzdiox closed 1 year ago

camzdiox commented 1 year ago

The following variables will need to be added in the project settings / "Actions secrets and variables"

GPG_PRIVATE_KEY
PASSPHRASE

I've also manual execution of the workflow, in case that for some reason it wasn't executed automatically.

I've noticed an issue on my environment, while running goreleaser: release failed after 0s error=git tag 1.0 was not made against commit

I didn't have time to get rid of this error, but as temporary solution, I run the following commands, to recreate tag locally and on github.com:

git tag -d 1.0
git push --delete origin 1.0
git tag 1.0
git push origin 1.0
jwijenbergh commented 1 year ago

This was manually merged in 1b35604b7247ec40b0bba40c2436524cf9974264. Thanks!