diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml new file mode 100644 index 0000000..d021de8 --- /dev/null +++ b/.gitea/workflows/publish.yaml @@ -0,0 +1,30 @@ +name: ci + +on: + push: + branches: + - 'main' + +jobs: + docker: + runs-on: ubuntu-20.04 + steps: + - + name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - + name: Login to REPO + uses: docker/login-action@v2 + with: + registry: git.fascinated.cc + username: ${{ secrets.REPO_USERNAME }} + password: ${{ secrets.REPO_TOKEN }} + - + name: Build and push + uses: docker/build-push-action@v4 + with: + push: true + tags: git.fascinated.cc/Fascinated/beatsaber-overlay:latest \ No newline at end of file