-
Notifications
You must be signed in to change notification settings - Fork 6
48 lines (42 loc) · 1.26 KB
/
publish.yml
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
name: Publish
on:
push:
tags:
- 'v0.5.*'
workflow_dispatch:
repository_dispatch:
types: [nightly-published]
jobs:
publish:
name: Publish
runs-on: ubuntu-22.04
if: github.repository == 'scala-native/scala-native-cli'
steps:
- uses: actions/checkout@v3
- uses: coursier/cache-action@v6
- uses: coursier/setup-action@v1
with:
jvm: adopt:8
- name: Setup PGP Key
run: |
echo -n "$PGP_SECRET" | base64 --decode | gpg --batch --import
env:
PGP_SECRET: ${{ secrets.PGP_SECRET }}
- name: Compile everything
run: sbt "+Test/compile"
- name: Publish release
env:
MAVEN_USER: "${{ secrets.SONATYPE_USER }}"
MAVEN_PASSWORD: "${{ secrets.SONATYPE_PASSWORD }}"
PGP_PASSPHRASE: "${{ secrets.PGP_PASSWORD }}"
run: sbt "clean;+cli/cliPack; +cli/publishSigned"
- name: Create release artifacts
run: |
version=$(sbt "print cli/version" | grep . | tail -n 2 | head -n 1)
echo "This build version: $version"
./scripts/dist.sh $version
- name: Archive CLI artifacts
uses: actions/upload-artifact@v3
with:
name: scala-native-cli
path: release/