Skip to content

Commit

Permalink
ci: Install Python and Poetry before running version script
Browse files Browse the repository at this point in the history
  • Loading branch information
lavie committed Jan 29, 2025
1 parent 0b7ccd4 commit 93e3c57
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ jobs:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- uses: actions/setup-python@v5
with:
python-version: '3.8'
architecture: 'x64'

- name: Install Poetry
run: pip install poetry

- name: Get Version
id: get_version
run: |
Expand Down

0 comments on commit 93e3c57

Please sign in to comment.