Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2bb1aaa

Browse files
committedMay 1, 2024
Fix release workflow
1 parent c23814d commit 2bb1aaa

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed
 

‎.github/workflows/release.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Release
2+
23
on:
34
workflow_dispatch:
45
inputs:
@@ -10,19 +11,23 @@ on:
1011
description: "Version to use for further development"
1112
required: true
1213
default: "X.Y.Z-RIE"
14+
1315
jobs:
14-
release:
15-
environment: release
16+
Release:
17+
environment: Release
1618
runs-on: ubuntu-latest
1719
steps:
18-
# - uses: actions/checkout@v3 #in SnapStart but moved to below
20+
- uses: actions/checkout@v3
1921
- name: Configure Git User # may be removed after https://github.com/actions/checkout/issues/13 is resolved
20-
uses: actions/checkout@v3
2122
run: |
2223
git config user.email "${{ github.actor }}@users.noreply.github.com"
2324
git config user.name "${{ github.actor }}"
24-
- name: Checkout
25-
uses: actions/checkout@v4
25+
# - name: Checkout
26+
# uses: actions/checkout@v4
27+
- name: Set up python
28+
- uses: actions/setup-python@v5
29+
with:
30+
python-version: '3.11'
2631
- name: Build
2732
run: make compile-with-docker-all
2833
# run: echo ${{ github.sha }} > Release.txt

0 commit comments

Comments
 (0)
Please sign in to comment.