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