-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5e0ffcb
commit df467d9
Showing
8 changed files
with
108 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
tags: | ||
- '*' | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Git checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '12' | ||
|
||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
|
||
- name: Cache sbt | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.sbt | ||
~/.ivy2/cache | ||
~/.coursier/cache/v1 | ||
~/.cache/coursier/v1 | ||
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt', 'project/**/*.scala') }} | ||
|
||
- name: Cache node_modules | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.npm | ||
~/.nvm | ||
~/work/scommons-react/scommons-react/core/target/scala-2.13/scalajs-bundler/test/node_modules | ||
~/work/scommons-react/scommons-react/core/target/scala-2.13/scalajs-bundler/test/package-lock.json | ||
~/work/scommons-react/scommons-react/dom/target/scala-2.13/scalajs-bundler/test/node_modules | ||
~/work/scommons-react/scommons-react/dom/target/scala-2.13/scalajs-bundler/test/package-lock.json | ||
~/work/scommons-react/scommons-react/redux/target/scala-2.13/scalajs-bundler/test/node_modules | ||
~/work/scommons-react/scommons-react/redux/target/scala-2.13/scalajs-bundler/test/package-lock.json | ||
~/work/scommons-react/scommons-react/showcase/target/scala-2.13/scalajs-bundler/test/node_modules | ||
~/work/scommons-react/scommons-react/showcase/target/scala-2.13/scalajs-bundler/test/package-lock.json | ||
~/work/scommons-react/scommons-react/test/target/scala-2.13/scalajs-bundler/test/node_modules | ||
~/work/scommons-react/scommons-react/test/target/scala-2.13/scalajs-bundler/test/package-lock.json | ||
~/work/scommons-react/scommons-react/test-dom/target/scala-2.13/scalajs-bundler/test/node_modules | ||
~/work/scommons-react/scommons-react/test-dom/target/scala-2.13/scalajs-bundler/test/package-lock.json | ||
key: ${{ runner.os }}-node_modules-cache-v2-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node_modules-cache-v2- | ||
- name: Extract Tag Name | ||
run: echo "TAG_NAME=$(echo ${GITHUB_REF##*/})" >> $GITHUB_ENV | ||
if: ${{ startsWith(github.ref, 'refs/tags') }} | ||
|
||
- name: Run tests | ||
run: | | ||
sbt coverage test | ||
sbt coverageAggregate coveralls | ||
if: ${{ env.TAG_NAME == '' }} | ||
env: | ||
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | ||
|
||
- name: Publish SNAPSHOT | ||
run: sbt clean publish | ||
if: ${{ !github.event.pull_request && env.TAG_NAME == '' }} | ||
env: | ||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | ||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | ||
|
||
- name: Publish RELEASE | ||
run: | | ||
mkdir ./keys | ||
echo $PGP_PUBLIC | base64 --decode > ./keys/pubring.gpg | ||
echo $PGP_SECRET | base64 --decode > ./keys/secring.gpg | ||
VERSION="$(echo "$TAG_NAME" | cut -d'v' -f 2)" | ||
echo "Publish a release version=$VERSION for tag $TAG_NAME" | ||
version=$VERSION sbt clean publishSigned sonatypeBundleRelease | ||
if: ${{ env.TAG_NAME != '' }} | ||
env: | ||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | ||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | ||
PGP_PUBLIC: ${{ secrets.PGP_PUBLIC }} | ||
PGP_SECRET: ${{ secrets.PGP_SECRET }} | ||
PGP_PASS: ${{ secrets.PGP_PASS }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import java.util.Base64 | ||
|
||
//see: https://www.scala-sbt.org/sbt-pgp/usage.html | ||
|
||
useGpg := false | ||
pgpPublicRing := file("./travis/pubring.gpg") | ||
pgpSecretRing := file("./travis/secring.gpg") | ||
pgpPassphrase := sys.env.get("PGP_PASS").map(_.toArray) | ||
pgpPublicRing := file("./keys/pubring.gpg") | ||
pgpSecretRing := file("./keys/secring.gpg") | ||
pgpPassphrase := sys.env.get("PGP_PASS").map(p => new String(Base64.getDecoder.decode(p)).toArray) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.