File tree 1 file changed +11
-6
lines changed
1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 1
1
name : Release
2
+
2
3
on :
3
4
workflow_dispatch :
4
5
inputs :
10
11
description : " Version to use for further development"
11
12
required : true
12
13
default : " X.Y.Z-RIE"
14
+
13
15
jobs :
14
- release :
15
- environment : release
16
+ Release :
17
+ environment : Release
16
18
runs-on : ubuntu-latest
17
19
steps :
18
- # - uses: actions/checkout@v3 #in SnapStart but moved to below
20
+ - uses : actions/checkout@v3
19
21
- name : Configure Git User # may be removed after https://github.com/actions/checkout/issues/13 is resolved
20
- uses : actions/checkout@v3
21
22
run : |
22
23
git config user.email "${{ github.actor }}@users.noreply.github.com"
23
24
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'
26
31
- name : Build
27
32
run : make compile-with-docker-all
28
33
# run: echo ${{ github.sha }} > Release.txt
You can’t perform that action at this time.
0 commit comments