Skip to content

Merge pull request #8 from iscas-tis/SeddonShen-patch-1 #10

Merge pull request #8 from iscas-tis/SeddonShen-patch-1

Merge pull request #8 from iscas-tis/SeddonShen-patch-1 #10

Workflow file for this run

name: CI
on:
push:
tags:
- 'v*'
branches:
- main
jobs:
auto-publish:
name: Auto Publish
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cleanup
run: sed -i "s/%NAME%/test/g" build.sc
- name: Setup Scala
uses: olafurpg/setup-scala@v10
with:
java-version: [email protected]
- name: Cache Scala
uses: coursier/cache-action@v5
- name: Setup GPG (for Publish)
uses: olafurpg/setup-gpg@v3
- name: Publish
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 }}