Skip to content

Commit

Permalink
Release with GitHub Actions (#117)
Browse files Browse the repository at this point in the history
* Release with GitHub Actions

* Delete .travis.yml
  • Loading branch information
poslegm authored Aug 1, 2020
1 parent a3d9b66 commit c9eaa62
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 32 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release
on:
push:
branches: [master]
tags: ["*"]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: olafurpg/setup-scala@v2
- uses: olafurpg/setup-gpg@v2
- run: git fetch --tags || true
- name: Publish ${{ github.ref }}
run: sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

0 comments on commit c9eaa62

Please sign in to comment.