Skip to content

Commit

Permalink
🐛 Fix Docker images steps & update release docs (#980)
Browse files Browse the repository at this point in the history
  • Loading branch information
trymzet authored Aug 22, 2024
1 parent 46b51b7 commit 370efd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 370efd6

Please sign in to comment.