1
0
forked from MTSR/mapserver
mapserver/.github/workflows/build.yml

54 lines
1.1 KiB
YAML
Raw Permalink Normal View History

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
uses: actions/checkout@v4
2022-02-01 16:51:25 +03:00
with:
fetch-depth: 0
- name: Set up Go
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
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
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
# only on tags
2022-02-01 16:51:25 +03:00
- name: Run GoReleaser
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 }}