-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (63 loc) · 2.17 KB
/
release.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Build and Publish package to GitHub Packages
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-[a-z]+.[0-9]+'
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Set up Go
uses: actions/setup-go@v4
- name: Get version
id: version
run: |
echo "parsing version from ref '$GITHUB_REF'"
VERSION=$(echo "$GITHUB_REF" | sed -e "s|refs/tags/||g" | sed -E 's/v?([0-9]+)\.([0-9]+)\.([0-9]+)(-[a-zA-Z]+(\.[0-9]+)?)?/\1.\2.\3\4/g')
echo "version: '$VERSION'"
echo "VERSION=$VERSION" >> $GITHUB_ENV
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Update Version
run: |
echo "updating version to '$VERSION'"
mvn -B versions:set "-DnewVersion=$VERSION"
- name: Publish package
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: '~> v1'
args: release --snapshot
workdir: ./parser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
name: ${{ steps.version.outputs.version }}
body: |
The spice must flow!
files: |
parser/dist/spicegen_Darwin_arm64.tar.gz
parser/dist/spicegen_Darwin_x86_64.tar.gz
parser/dist/spicegen_Linux_arm64.tar.gz
parser/dist/spicegen_Linux_i386.tar.gz
parser/dist/spicegen_Linux_x86_64.tar.gz
parser/dist/spicegen_darwin_amd64_v1/spicegen
parser/dist/spicegen_darwin_arm64/spicegen
parser/dist/spicegen_linux_386/spicegen
parser/dist/spicegen_linux_amd64_v1/spicegen
parser/dist/spicegen_linux_arm64/spicegen