lockserver/.forgejo/workflows/docker-build.yaml
Finn 350fc3b339
All checks were successful
/ build-container (push) Successful in 1m3s
rip out all auth stuff, add a containerfile
2024-04-23 17:34:57 -07:00

19 lines
551 B
YAML

on:
push:
branches:
- 'main'
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: build container
uses: docker/build-push-action@v4
with:
file: Containerfile
tags: git.janky.solutions/finn/lockserver:latest
push: true