mapserver/.github/workflows/build.yml

70 lines
1.7 KiB
YAML
Raw 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 or the master branch
2022-02-01 16:51:25 +03:00
- name: Docker Login
if: success() && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master')
uses: docker/login-action@v3
2022-02-01 16:51:25 +03:00
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
# only on tags
2022-02-01 16:51:25 +03:00
- name: Run GoReleaser
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 }}
# 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