29 lines
624 B
YAML
29 lines
624 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: Debug
|
|
run: echo "wat?"
|
|
# - name: Docker test
|
|
# run: docker run hello-world
|
|
|
|
Alpine:
|
|
runs-on: alpine-3.19.0
|
|
steps:
|
|
- name: Debug
|
|
run: echo "wat?"
|
|
|
|
Alpine-With-CO:
|
|
runs-on: alpine-3.19.0
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Debug
|
|
run: echo "wat?"
|