moth/.github/workflows/build+test.yml

68 lines
1.6 KiB
YAML

name: Build/Test
on:
push:
branches:
- v3
- devel
- main
tags:
- 'v*.*.*'
jobs:
test-mothd:
name: Test mothd
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.13
- name: Retrieve code
uses: actions/checkout@v2
- name: Test
run: go test ./...
publish:
name: Publish container images
runs-on: ubuntu-latest
steps:
- name: Retrieve code
uses: actions/checkout@v2
- name: Gitlab variables
id: vars
run: build/ci/gitlab-vars
- name: Login to GitHub Packages Docker Registry
uses: docker/login-action@v1
with:
registry: docker.pkg.github.com
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: neale
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push moth image
uses: docker/build-push-action@v2
with:
target: moth
file: build/package/Containerfile
push: ${{ steps.vars.outputs.tags != '' }}
tags: ${{ steps.vars.outputs.moth-tags }}
- name: Build and push moth-devel image
uses: docker/build-push-action@v2
with:
target: moth
file: build/package/Containerfile
tags: ${{ steps.vars.outputs.devel-tags }}
dirtbags/moth-devel:latest
docker.pkg.github.com/dirtbags/moth/moth-devel:latest