Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```