diff --git a/.github/workflows/build_push_image.yml b/.github/workflows/build_push_image.yml new file mode 100644 index 00000000..c1d1d392 --- /dev/null +++ b/.github/workflows/build_push_image.yml @@ -0,0 +1,36 @@ +name: Build and Push Docker Image + +on: + push: + tags: + - '*' + +jobs: + build-and-push: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log in to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} # Using token is recommended + + - name: Build and push Docker image + uses: docker/build-push-action@v6 + with: + context: . + file: dockerize/docker/Dockerfile + push: true + tags: | + ${{ secrets.DOCKER_USERNAME }}/qgis-plugins-uwsgi:${{ github.ref_name }} + ${{ secrets.DOCKER_USERNAME }}/qgis-plugins-uwsgi:latest + + - name: Log out from Docker Hub + run: docker logout diff --git a/qgis-app/.version b/qgis-app/.version index 45a1b3f4..e9307ca5 100644 --- a/qgis-app/.version +++ b/qgis-app/.version @@ -1 +1 @@ -1.1.2 +2.0.2