Files
test/.gitea/workflows/demo.yaml
danthe42 ee4af9589d
Some checks failed
ci / docker (push) Failing after 29s
xxxx
2025-11-06 18:04:28 +01:00

32 lines
961 B
YAML

name: ci
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to GitEA Docker Container Registry
uses: docker/login-action@v3
with:
registry: gitea.goroid.io
username: danthe
password: Secret666
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
version: "lab:latest"
driver: cloud
endpoint: "danthe/default"
install: true
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
tags: "danthe/test"
# For pull requests, export results to the build cache.
# Otherwise, push to a registry.
outputs: ${{ github.event_name == 'pull_request' && 'type=cacheonly' || 'type=registry,push=true' }}