We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddd2bcc commit 8ede723Copy full SHA for 8ede723
.github/workflows/release.yml
@@ -21,12 +21,12 @@ jobs:
21
- name: "Checkout Repository"
22
uses: actions/checkout@v3
23
24
- - name: "Install Python Libraries"
25
- run: python -m pip install --user -r requirements.txt
26
- working-directory: "scripts"
+ # TODO: Remove when Python 3.11 is the default on the Gihtub Actions image
+ - name: "Install Python 3.11"
+ run: sudo apt-get -y install python3.11
27
28
- name: "Run release script"
29
- run: "python3 scripts/ci-release.py"
+ run: "python3.11 scripts/ci-release.py"
30
env:
31
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
32
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
scripts/requirements.txt
0 commit comments