name: CI Demo on: [push] workflow_dispatch: jobs: build: runs-on: ubuntu-latest # This job will run on a runner with the 'ubuntu' label steps: - uses: actions/checkout@v4 # Downloads the code from the repository - name: Run a one-line script run: echo "Hello, Gitea Actions!" - name: Show os-release run: cat /etc/os-release