lilleman
f4a26d117a
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
17 lines
429 B
YAML
17 lines
429 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Debug
|
|
run: echo "wat?"
|
|
- name: Docker test
|
|
run: docker run hello-world
|