forked from zdzichu/quick-qrcode-generator
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m43s
18 lines
497 B
YAML
18 lines
497 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing actions
|
|
on: [push]
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "trigger event ${{ gitea.event_name }}, runner ${{ runner.os }}"
|
|
- run: echo "branch ${{ gitea.ref }}, repo ${{ gitea.repository }}"
|
|
- name: Get the code
|
|
uses: actions/checkout@v4
|
|
- name: list files
|
|
run: |
|
|
ls -l ${{ gitea.workspace }}
|
|
- run: echo "status $${ job.status }}"
|
|
|