2022-02-01 16:51:25 +03:00
|
|
|
name: build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-12-29 18:05:12 +03:00
|
|
|
uses: actions/checkout@v4
|
2022-02-01 16:51:25 +03:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up Go
|
2024-06-05 06:19:31 +03:00
|
|
|
uses: actions/setup-go@v5.0.1
|
2022-02-01 16:51:25 +03:00
|
|
|
with:
|
2024-06-06 20:47:31 +03:00
|
|
|
go-version: "1.22"
|
2022-02-01 16:51:25 +03:00
|
|
|
|
|
|
|
- name: Set up nodejs
|
2023-12-28 00:43:19 +03:00
|
|
|
uses: actions/setup-node@v4
|
2022-02-01 16:51:25 +03:00
|
|
|
with:
|
|
|
|
node-version: '17'
|
2022-02-01 16:53:18 +03:00
|
|
|
|
|
|
|
- name: Create frontend bundle
|
2022-02-01 16:51:25 +03:00
|
|
|
run: cd public && npm ci && npm run bundle
|
|
|
|
|
|
|
|
- name: Cache Go modules
|
2024-01-17 20:19:45 +03:00
|
|
|
uses: actions/cache@v4
|
2022-02-01 16:51:25 +03:00
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-go-
|
|
|
|
|
|
|
|
- name: Tests
|
|
|
|
run: |
|
2022-02-01 17:47:34 +03:00
|
|
|
go test ./...
|
2022-02-01 16:51:25 +03:00
|
|
|
|
2022-12-16 10:12:57 +03:00
|
|
|
# only on tags
|
2022-02-01 16:51:25 +03:00
|
|
|
- name: Run GoReleaser
|
2024-06-07 10:11:53 +03:00
|
|
|
uses: goreleaser/goreleaser-action@v6
|
2022-02-01 17:31:42 +03:00
|
|
|
if: success() && startsWith(github.ref, 'refs/tags/')
|
2022-02-01 16:51:25 +03:00
|
|
|
with:
|
|
|
|
version: latest
|
2024-06-06 20:47:31 +03:00
|
|
|
args: release --clean
|
2022-02-01 16:51:25 +03:00
|
|
|
env:
|
2022-02-01 17:34:00 +03:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|