We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee2461a commit 6045a11Copy full SHA for 6045a11
.github/workflows/publish-release.yml
@@ -43,7 +43,7 @@ on:
43
44
jobs:
45
publish:
46
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
47
steps:
48
- name: Checkout release repo (${{ inputs.release_repo || github.event.inputs.release_repo }})
49
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -53,6 +53,12 @@ jobs:
53
ref: ${{ inputs.branch || github.event.inputs.branch }}
54
fetch-depth: 0
55
56
+ - name: Set up Python
57
+ if: inputs.release_repo == 'glsp-theia-integration'
58
+ uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
59
+ with:
60
+ python-version: '3.11'
61
+
62
- name: Configure Git
63
run: |
64
git config --global user.name "github-actions[bot]"
0 commit comments