docker-aria2c/.github/workflows/build.yaml
James Andariese 5b3e3ef854
All checks were successful
Github Actions Demo / Explore-Gitea-Actions (push) Successful in 39s
wip
2024-02-25 14:01:01 -06:00

20 lines
467 B
YAML

name: Github Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions (on Gitea) 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: |
ls ${{ github.workspace }}
- run: |
echo hostname
hostname || true
echo /bin
ls /bin || true
echo /etc
ls /etc || true