-
Notifications
You must be signed in to change notification settings - Fork 6
90 lines (79 loc) · 2.23 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Release
on:
push:
tags: '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64, arm64]
os: [darwin, freebsd, linux, windows]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21.4'
- name: Install dependencies
run: |
go mod download
- name: Build
run: |
GOARCH=${{ matrix.arch }} GOOS=${{ matrix.os }} go build -o app-${{ matrix.os }}-${{ matrix.arch }} ./main.go
# Tried gzip but without succeding of keeping execute permissions
- name: Zip
run: |
zip app-${{ matrix.os }}-${{ matrix.arch }}.zip app-${{ matrix.os }}-${{ matrix.arch }}
- uses: actions/upload-artifact@v4
with:
name: app-${{ matrix.os }}-${{ matrix.arch }}.zip
path: |
app-${{ matrix.os }}-${{ matrix.arch }}.zip
retention-days: 1
publish:
needs:
- build
runs-on: ubuntu-latest
env:
GH_REPO: ${{ github.repository }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: write
steps:
# Must perform checkout first, since it deletes the target directory
# before running, and would therefore delete the downloaded artifacts
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- name: Publish release
run: |
TAG_NAME=${{ github.ref_name }}
gh release upload $TAG_NAME app-*/*
deploy:
needs:
- publish
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4