Files
timothykim.net/.gitea/workflows/build.yml
T
timothykim b919ba3884
Build and Push Docker Image / build (push) Failing after 5s
Test Runner / test (push) Successful in 1s
change token
2026-03-10 23:45:49 -04:00

25 lines
525 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: Login to Gitea Registry
run: echo "${{ gitea.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