All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6m45s
13 lines
339 B
YAML
13 lines
339 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: docker
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v5
|
|
- run: echo "Starting building the docker image"
|
|
- run: docker build -t andreas/rsyncd:latest .
|