Skip to content

Commit

Permalink
Fix release action docker limit (#2837) (#2838)
Browse files Browse the repository at this point in the history
* Fix release action docker limit

* Port Release notes update

(cherry picked from commit 1197811)
  • Loading branch information
schustmi committed Jul 9, 2024
1 parent 7a022d8 commit 50334c3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
uses: actions/setup-python@v5.0.0
with:
python-version: '3.9'
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Test migrations across versions
run: bash scripts/test-migrations.sh mysql
sqlite-db-migration-testing:
Expand Down Expand Up @@ -85,6 +90,11 @@ jobs:
uses: actions/setup-python@v4.8.0
with:
python-version: '3.9'
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Test migrations across versions
run: bash scripts/test-migrations.sh mariadb
publish-python-package:
Expand Down
6 changes: 5 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

This release comes with a new and easy way to deploy an AWS ZenML stack from the dashboard and the CLI. Give it a try by going to the `Stacks` section in the dashboard or running the `zenml stack deploy` command!

We hope this makes it super easy for existing and new users to set up the infrastructure required to run ZenML pipelines on the cloud in one click.

Note: Only a simple AWS stack using Skypilot supported for now but GCP + Azure to come!

Additionally, this release includes improvements to our documentation and bugfixes for some integrations.

## What's Changed
Expand All @@ -28,7 +32,7 @@ Additionally, this release includes improvements to our documentation and bugfix
* Remove prefix for analytics labels by @schustmi in https://github.com/zenml-io/zenml/pull/2831


**Full Changelog**: https://github.com/zenml-io/zenml/compare/0.60.0...test
**Full Changelog**: https://github.com/zenml-io/zenml/compare/0.60.0...0.61.0

# 0.60.0

Expand Down

0 comments on commit 50334c3

Please sign in to comment.