Files
test/.gitea/workflows/demo.yaml
danthe42 2597b5bf5f
Some checks failed
ci / docker (push) Has been cancelled
xxxx2
2025-11-06 18:17:56 +01:00

19 lines
557 B
YAML

name: ci
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
docker:
runs-on: docker-stable
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to docker
run: docker login -u danthe -p Secret666 gitea.goroid.io
- name: Build docker container
run: docker build -t gitea.goroid.io/danthe/test:latest .
- name: Push docker container
run: docker push gitea.goroid.io/danthe/test:latest
- name: Cleanup old images
run: docker image prune -f