All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1s
17 lines
323 B
YAML
17 lines
323 B
YAML
name: Gitea Actions Demo
|
|
run-name: Deploy 🚀
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: List files in the repository
|
|
run: |
|
|
ls ${{ gitea.workspace }}
|
|
|
|
- name: Execute a single command
|
|
run: echo "Hello, world!" |