Skip to content

Commit

Permalink
Fix rebuild and monthly release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Oct 10, 2024
1 parent acb34bb commit c14deaf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/monthly-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: pip install --requirement=ci/requirements.txt

- run: .github/monthly-release
6 changes: 4 additions & 2 deletions .github/workflows/rebuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,10 @@ jobs:
- run: echo "enablePublishing=true" > gradle.properties
- run: git diff

- run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH}
- run: python3 -m pip install --user --requirement=ci/requirements.txt
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: python3 -m pip install --requirement=ci/requirements.txt

- run: make build

Expand Down

0 comments on commit c14deaf

Please sign in to comment.