From a6c9cd3ca5871cf972401a08bdb4ff4ed1fbecbf Mon Sep 17 00:00:00 2001 From: Lova Andriarimalala <43842786+Xpirix@users.noreply.github.com> Date: Tue, 2 Jul 2024 12:15:35 +0300 Subject: [PATCH] Push uwsgi image (#438) * Add build and push image to DockerHub workflow * Update to version 2.0.1 * Update image build action version, add docker logout * Fix the actions versions in build_push_image * Bump to version 2.0.2 --- .github/workflows/build_push_image.yml | 36 ++++++++++++++++++++++++++ qgis-app/.version | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/build_push_image.yml 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