matrix-bridge-meshtastic/.forgejo/workflows/container-build.yaml
Finn b1b518e146
All checks were successful
/ build-container (push) Successful in 1m52s
Add container build + rename project
2024-10-20 21:44:55 -07:00

29 lines
1 KiB
YAML

on: [push]
jobs:
build-container:
runs-on: docker
container:
image: library/docker:dind
steps:
- run: apk add --no-cache nodejs git
- name: login to container registry
run: echo "${{ secrets.PACKAGE_PUBLISH_TOKEN }}" | docker login --username finn --password-stdin git.janky.solutions
- name: gather metadata for container image tags
uses: https://github.com/docker/metadata-action@v5
id: meta
with:
images: git.janky.solutions/finn/matrix-bridge-meshtastic
tags: |
type=schedule
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=ref,event=branch
type=sha
- name: build container image
uses: docker/build-push-action@v6
with:
file: Containerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: ${{ github.ref == 'refs/heads/main' }}