Skip to content

GitHub Action to install the same version of gpg as on Travis CI

License

Notifications You must be signed in to change notification settings

olafurpg/setup-gpg

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

GitHub Action to install gpg v1.4.

Usage

In your GitHub Actions workflow, add a uses: declaration before calling the sbt command.

+++ .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