diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..36159c9 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,21 @@ +name: Github Actions Demo +run-name: ${{ github.actor }} is testing out GitHub Actions (on Gitea) 🚀 +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: metal-docker + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - run: | + ls ${{ github.workspace }} + - run: | + sleep 500 + hostname + ls /etc + ls /config + export PATH=$PATH:/usr/local/bin:/usr/local/sbin + ls /usr/local/bin + docker ps -a + true