15 lines
425 B
YAML
15 lines
425 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: |
|
|
docker push git.unixyourbrain.org/beastie/runner-custom:latest
|