mirror of https://github.com/dirtbags/moth.git
Stop pushing images from Github
This commit is contained in:
parent
d51e4c2504
commit
ce037ebca3
|
@ -1,13 +1,4 @@
|
||||||
name: Build/Test/Push
|
name: Test
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- v3
|
|
||||||
- devel
|
|
||||||
- main
|
|
||||||
tags:
|
|
||||||
- 'v*.*.*'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-mothd:
|
test-mothd:
|
||||||
|
@ -17,54 +8,10 @@ jobs:
|
||||||
- name: Install Go
|
- name: Install Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.13
|
go-version: 1.17
|
||||||
|
|
||||||
- name: Retrieve code
|
- name: Retrieve code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go 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: ghcr.io
|
|
||||||
username: ${{ github.repository_owner }}
|
|
||||||
password: ${{ secrets.CR_PAT }}
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v1
|
|
||||||
with:
|
|
||||||
username: neale
|
|
||||||
password: ${{ secrets.DOCKER_TOKEN }}
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v1
|
|
||||||
|
|
||||||
# Currently required, because buildx doesn't support auto-push from docker
|
|
||||||
- name: Set up builder
|
|
||||||
uses: docker/setup-buildx-action@v1
|
|
||||||
id: buildx
|
|
||||||
|
|
||||||
- name: Build and push moth image
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
builder: ${{ steps.buildx.outputs.name }}
|
|
||||||
target: moth
|
|
||||||
file: build/package/Containerfile
|
|
||||||
push: true
|
|
||||||
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
|
|
||||||
tags: |
|
|
||||||
dirtbags/moth:${{ steps.vars.outputs.tag }}
|
|
||||||
ghcr.io/dirtbags/moth:${{ steps.vars.outputs.tag }}
|
|
||||||
|
|
Loading…
Reference in New Issue