diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml new file mode 100644 index 0000000..4fe924d --- /dev/null +++ b/.gitea/workflows/publish.yaml @@ -0,0 +1,12 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions +on: [push] +jobs: + explore-gitea-actions: + runs-on: general-xd + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: List directory contents + run: ls -la + - run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event."