-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (47 loc) · 1.36 KB
/
release-snapshot.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Release Snapshot
on:
release:
types: [published]
permissions:
contents: read
jobs:
release_npm:
if: "github.event.release.prerelease"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- uses: actions/setup-java@v3
with:
distribution: corretto
java-version: 8
cache: sbt
- name: Release Snapshot to NPM
run: |
npm config set ignore-scripts true
scripts/ci/release-snapshot-npm.sh
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
release_sonatype:
if: "github.event.release.prerelease"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: corretto
java-version: 8
cache: sbt
- name: Release Snapshot to Sonatype
run: |
scripts/ci/configure-gpg.sh
scripts/ci/release-snapshot-sonatype.sh
env:
PGP_SECRET: ${{ secrets.PGP_SECRET }}
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}