diff --git a/.gitea/workflows/upload_site.yaml b/.gitea/workflows/upload_site.yaml new file mode 100644 index 0000000..392372f --- /dev/null +++ b/.gitea/workflows/upload_site.yaml @@ -0,0 +1,18 @@ +--- +name: Generate and upload hugo website +on: + push: + +jobs: + generate_and_uplaod_site: + runs-on: ubuntu-latest + steps: + - name: Install Hugo + run: sudo apt install -y hugo + + - name: Check out repository code + uses: actions/checkout@v4 + + - name: List files in the repository + run: ls ${{ gitea.workspace }} +