Files
Workflow config file is invalid. Please check your config file: yaml: line 10: mapping values are not allowed in this context

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 }}."