Files
runner-custom/.gitea/workflows/gitea-ci.yaml
Jérémie SALVI c5c7e745c5
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 25s
Test actions
2024-12-22 01:56:16 +01:00

21 lines
647 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: runner-custom
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: |
docker build -t git.unixyourbrain.org/beastie/runner-custom:latest .
- run: |
echo "ea3f3b210bf527147657719ea194264acedce483" | \
docker login --username beastie --password-stdin \
https://git.unixyourbrain.org/
- run: |
docker push git.unixyourbrain.org/beastie/runner-custom:latest
- run: |
docker logout