minetest config ui #823
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- 'v*' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install npm modules | |
run: | | |
cd public && npm ci && npm run jshint && npm run bundle | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: "1.20" | |
- name: Cache Go modules | |
uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Tests | |
run: | | |
go test ./... | |
- name: Log in to the Container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
# step for tags (v*) | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v4 | |
if: success() && startsWith(github.ref, 'refs/tags/') | |
with: | |
version: latest | |
args: release --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# step for master/latest (docker only) | |
- name: Build and push latest docker image | |
if: success() && github.ref == 'refs/heads/master' | |
run: | | |
go build -ldflags="-s -w -extldflags=-static" | |
docker build . -t ghcr.io/minetest-go/mtui:latest | |
docker push ghcr.io/minetest-go/mtui:latest |