pdfsplitter/.forgejo/workflows/build.yml
Elijah 84fae59d4c
Some checks failed
Automated Container Build / build-and-push (push) Failing after 5s
Route registry traffic through proxy domain
2026-05-20 18:28:52 -07:00

22 lines
No EOL
636 B
YAML

name: Automated Container Build
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Log into Local Registry
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login git.elijahkuntz.com -u "${{ gitea.actor }}" --password-stdin
- name: Build and Push Image
run: |
docker build -t git.elijahkuntz.com/${{ gitea.actor }}/${{ github.event.repository.name }}:latest .
docker push git.elijahkuntz.com/${{ gitea.actor }}/${{ github.event.repository.name }}:latest