caching-proxy/.forgejo/workflows/docker-build.yaml

20 lines
558 B
YAML
Raw Normal View History

2024-02-18 22:51:11 +00:00
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.GITHUB_TOKEN }}" | docker login --username "${GITHUB_ACTOR}" --password-stdin git.janky.solutions
- name: build container
uses: docker/build-push-action@v6
2024-02-18 22:51:11 +00:00
with:
file: Containerfile
2024-02-18 22:56:28 +00:00
tags: git.janky.solutions/finn/caching-proxy:latest
2024-02-18 22:51:11 +00:00
push: true