diff --git a/.gitea/gitea-ci.yml b/.gitea/gitea-ci.yml new file mode 100644 index 0000000..733398f --- /dev/null +++ b/.gitea/gitea-ci.yml @@ -0,0 +1,28 @@ +name: Build and push image + +on: + workflow_dispatch: + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - + name: Login to Gitea + uses: docker/login-action@v3 + with: + registry: lab.5b5.eu + username: ${{ vars.PACKAGE_USERNAME }} + password: ${{ secrets.PACKAGE_TOKEN }} + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - + name: Build and push + uses: docker/build-push-action@v6 + with: + push: true + tags: user/app:latest \ No newline at end of file