16 lines
505 B
YAML
16 lines
505 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:
|
|
// Logging pre checkout information
|
|
- run: echo "👋 Hello, ${{ gitea.actor }}! Welcome
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: List files in the repository
|
|
run: |
|
|
ls "${{ github.workspace }}"
|
|
- run: echo "🍏 This job's status is ${{ job.status }}." |