11 lines
286 B
YAML
11 lines
286 B
YAML
name: Gitea Actions Demo
|
|
on: [push]
|
|
jobs:
|
|
build-container:
|
|
runs-on: node-22-bookworm
|
|
steps:
|
|
- run: echo echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
- run: ls -l
|