traefik/.forgejo/workflows/build-push.yml
baalajimaestro 0db85dbc8b
All checks were successful
Build & Push / build-and-push (push) Successful in 10m5s
Switch to forgejo ci
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
2024-08-22 00:15:51 +05:30

34 lines
No EOL
739 B
YAML

name: Build & Push
on:
push:
branches:
- master
jobs:
build-and-push:
runs-on: slave
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Startup DIND
run: /dockerd-entrypoint.sh dockerd &
shell: bash
- name: Login to Docker Registry
uses: docker/login-action@v1
with:
registry: git.ptr.moe
username: ${{ github.repository_owner }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build Image
run: make build-image
shell: bash
- name: Push Image
run: |
docker tag traefik/traefik git.ptr.moe/baalajimaestro/traefik:latest
docker push git.ptr.moe/baalajimaestro/traefik:latest
shell: bash