Files
act-runner-test/.gitea/workflows/demo.yaml
Lazy Hippopotamus 30a260bb92
Some checks failed
Gitea Actions Demo / Build-Docker-Image (push) Failing after 11s
mr smithers build'n'push [fucked up my yaml, sigh, why can't it just be json]
2025-02-05 13:50:57 -05:00

19 lines
559 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Build-Docker-Image:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- uses: mr-smithers-excellent/docker-build-push@v6
name: Build & push Docker image
with:
image: act-runner-test
registry: swaous.asuscomm.com
dockerfile: Dockerfile
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}