From 370efd6d1441dcb3a4e1a3d04fb460bf25d61870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zawadzki?= Date: Thu, 22 Aug 2024 11:35:41 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20Docker=20images=20steps=20?= =?UTF-8?q?&=20update=20release=20docs=20(#980)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 6 +++--- CONTRIBUTING.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index d5f038ba0..99f1f3340 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -85,7 +85,7 @@ jobs: push: true target: viadot-lite tags: | - ghcr.io/${{ github.repository }}/viadot-lite:${TAG} + ghcr.io/${{ github.repository }}/viadot-lite:${{ env.TAG }} ghcr.io/${{ github.repository }}/viadot-lite:latest - name: Build and publish viadot-aws image @@ -97,7 +97,7 @@ jobs: push: true target: viadot-aws tags: | - ghcr.io/${{ github.repository }}/viadot-aws:${TAG} + ghcr.io/${{ github.repository }}/viadot-aws:${{ env.TAG }} ghcr.io/${{ github.repository }}/viadot-aws:latest - name: Build and publish viadot-azure image @@ -109,7 +109,7 @@ jobs: push: true target: viadot-azure tags: | - ghcr.io/${{ github.repository }}/viadot-azure:${TAG} + ghcr.io/${{ github.repository }}/viadot-azure:${{ env.TAG }} ghcr.io/${{ github.repository }}/viadot-azure:latest build-args: INSTALL_DATABRICKS=false diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 63951b332..1f38aeee1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -132,7 +132,7 @@ Once the new version PR is merged to `main`, publish a version tag: ```bash viadot_version=v2.1.0 -git switch main && \ +git switch 2.0 && \ git pull && \ git tag -a $viadot_version -m "Release $viadot_version" && \ git push origin $viadot_version