-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (33 loc) · 984 Bytes
/
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
name: release
on:
workflow_dispatch:
push:
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup go dependencies
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: build and publish backend release
uses: goreleaser/goreleaser-action@v5
with:
args: release --clean --snapshot
distribution: goreleaser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: upload artifacts - amd64
uses: actions/[email protected]
with:
name: node-healthchecker_linux_amd64
path: dist/node-healthchecker_linux_amd64/node-healthchecker
- name: upload artifacts - arm64
uses: actions/[email protected]
with:
name: node-healthchecker_linux_arm64
path: dist/node-healthchecker_linux_arm64/node-healthchecker