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 or the master branch
|
2022-02-01 16:51:25 +03:00
|
|
|
- name: Docker Login
|
2022-12-16 10:12:57 +03:00
|
|
|
if: success() && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master')
|
2023-12-29 18:05:22 +03:00
|
|
|
uses: docker/login-action@v3
|
2022-02-01 16:51:25 +03:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
2022-12-16 10:12:57 +03:00
|
|
|
# only on tags
|
2022-02-01 16:51:25 +03:00
|
|
|
- name: Run GoReleaser
|
2023-01-28 07:54:54 +03:00
|
|
|
uses: goreleaser/goreleaser-action@v4
|
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 }}
|
|
|
|
|
2022-12-16 10:12:57 +03:00
|
|
|
# only on the master branch
|
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
|