Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olafurpg/setup-gpg
GitHub Action to install the same version of gpg as on Travis CI
https://github.com/olafurpg/setup-gpg
Last synced: 9 days ago
JSON representation
GitHub Action to install the same version of gpg as on Travis CI
- Host: GitHub
- URL: https://github.com/olafurpg/setup-gpg
- Owner: olafurpg
- License: mit
- Created: 2019-09-23T10:04:55.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:10:11.000Z (almost 2 years ago)
- Last Synced: 2024-10-26T11:32:36.277Z (11 days ago)
- Language: TypeScript
- Size: 705 KB
- Stars: 9
- Watchers: 1
- Forks: 6
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
GitHub Action to install gpg v1.4.
## Usage
In your GitHub Actions workflow, add a `uses:` declaration before calling the
`sbt` command.```diff
+++ .github/workflows/ci.yml
name: CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
+ - uses: olafurpg/setup-gpg@v3
- run: sbt publishSigned
```