Skip to content

test building on this branch #19

test building on this branch

test building on this branch #19

Workflow file for this run

name: Build
on:
push:
branches:
- 'master'
- 'tom-containerize'
env:
REGISTRY: ghcr.io
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/ZeusWPI/Tap
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=sha
flavor: |
latest=auto
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}