-
Notifications
You must be signed in to change notification settings - Fork 8
52 lines (40 loc) · 1.04 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
name: release
on:
push:
tags:
- '*'
pull_request:
types: [opened, synchronize]
permissions:
contents: write
packages: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install taskfile
run: sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
- name: Check dependencies & generated files
run: task check
- name: Build/download dependencies
run: task deps
- name: Build one platform
run: |
GOOS=linux GOARCH=amd64 OUTPUT=./photofield task build:binary
./photofield -version
rm ./photofield
- name: Build & package all platforms
run: |
task archive:all checksums