Files
timothykim.net/.gitea/workflows/build.yml
T
timothykim 8dea4f754c
Test Runner / test (push) Successful in 1s
Build and Push Docker Image / build (push) Failing after 4s
even more debug
2026-03-10 23:52:49 -04:00

28 lines
621 B
YAML

name: Build and Push Docker Image
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Debug registry auth
run: echo "${{ secrets.REGISTRY_TOKEN }}"
- name: Login to Gitea Registry
run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login git.timothykim.net -u ${{ gitea.actor }} --password-stdin
- name: Build and Push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: git.timothykim.net/timothykim/static:latest