Add CI task to deploy latest

This commit is contained in:
Jake Howard 2022-05-31 16:02:57 +01:00
parent 1ebae71422
commit 856b2860dd
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 33 additions and 0 deletions

33
.github/workflows/latest-deploy.yml vendored Normal file
View File

@ -0,0 +1,33 @@
name: Latest deploy
on:
push:
branches:
- master
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build containers
uses: docker/build-push-action@v2
with:
platforms: linux/386,linux/amd64,linux/arm64/v8
push: true
tags: |
ghcr.io/realorangeone/noop:latest