Skip to content

Commit

Permalink
Prepared for release 0.10.0 (#137)
Browse files Browse the repository at this point in the history
* Prepared for release 0.10.0

* Added disk cleaning to the workflow
  • Loading branch information
ahsimb authored Aug 8, 2024
1 parent db6ba57 commit f8a6f54
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@ jobs:
- name: SCM Checkout
uses: actions/checkout@v4

- name: Free disk space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: true
large-packages: false

- name: Free disk space by removing large directories
run: |
sudo rm -rf /usr/local/graalvm/
sudo rm -rf /usr/local/.ghcup/
sudo rm -rf /usr/local/share/powershell
sudo rm -rf /usr/local/share/chromium
sudo rm -rf /usr/local/lib/node_modules
sudo rm -rf /opt/ghc
- name: Setup Python & Poetry Environment
uses: ./.github/actions/prepare_poetry_env
with:
Expand Down
3 changes: 2 additions & 1 deletion doc/changes/changes_0.10.0.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SageMaker Extension 0.10.0, T.B.D.
# SageMaker Extension 0.10.0, released 2024-08-08

Code name: Python 3.10

Expand All @@ -13,6 +13,7 @@ Improving documentation, refactoring and moving to Python 3.10
### Documentation

* #116: Explanation of how to from the S3 bucket URI
- #133: Updated documentation including the deployment options in SaaS.

### Refactoring

Expand Down
5 changes: 0 additions & 5 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,3 @@ Code name: T.B.D.
## Summary

T.B.D.

### Documentation

- #133: Updated documentation including the deployment options in SaaS.

0 comments on commit f8a6f54

Please sign in to comment.