diff --git a/.gitea/workflows/build+deploy.yaml b/.gitea/workflows/build+deploy.yaml new file mode 100644 index 0000000..a0cb4a4 --- /dev/null +++ b/.gitea/workflows/build+deploy.yaml @@ -0,0 +1,16 @@ +name: Build + Deploy +run-name: ${{ gitea.actor }} is deploying this page to production. +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "Checkout repository first." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "The ${{ gitea.repository }} repository has been cloned to the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "This job's status is ${{ job.status }}." \ No newline at end of file