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@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v2.1.5
|
|
|
|
with:
|
|
|
|
go-version: 1.16
|
|
|
|
|
|
|
|
- name: Set up nodejs
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
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
|
2022-02-01 17:01:31 +03:00
|
|
|
uses: actions/cache@v2
|
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
|
|
|
|
|
|
|
- name: Docker Login
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
|
|
|
- name: Run GoReleaser
|
|
|
|
uses: goreleaser/goreleaser-action@v2
|
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
|
|
|
|
args: release --rm-dist
|
|
|
|
env:
|
2022-02-01 17:34:00 +03:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-02-01 17:39:49 +03:00
|
|
|
- name: Build and push latest docker image
|
2022-02-01 17:34:00 +03:00
|
|
|
if: success() && github.ref == 'refs/heads/master'
|
2022-02-01 17:39:49 +03:00
|
|
|
run: |
|
2022-02-01 17:58:38 +03:00
|
|
|
CGO_ENABLED=0 go build .
|
2022-02-01 17:39:49 +03:00
|
|
|
docker build . -t minetestmapserver/mapserver:latest
|
|
|
|
docker push minetestmapserver/mapserver:latest
|