diff --git a/.gitea/workflows/build_index.yml b/.gitea/workflows/build_index.yml new file mode 100644 index 0000000..494de96 --- /dev/null +++ b/.gitea/workflows/build_index.yml @@ -0,0 +1,25 @@ +on: [push] + +name: Continuous Integration + +jobs: + main: + name: Generate index.html + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Setup Python + run: | + apt update && apt install python3 python3-pip -y + pip install b2sdk jinja2 urllib3 + - name: Run script + env: + APPLICATION_KEY: ${{ secrets.APPLICATION_KEY }} + APPLICATION_KEY_ID: ${{ secrets.APPLICATION_KEY_ID }} + BUCKET_NAME: ${{ vars.BUCKET_NAME }} + BASE_URL: ${{ vars.BASE_URL }} + run: python3 script.py + - name: Upload build artifacts + uses: christopherhx/gitea-upload-artifact@v4 + with: + path: index.html \ No newline at end of file