Skip to content

Commit 28b5fd3

Browse files
committed
Fix release workflow
1 parent 297a400 commit 28b5fd3

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/release.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,20 @@ jobs:
1717
environment: Release
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
2120
- name: Configure Git User # may be removed after https://github.com/actions/checkout/issues/13 is resolved
21+
uses: actions/checkout@v3
2222
run: |
2323
git config user.email "${{ github.actor }}@users.noreply.github.com"
2424
git config user.name "${{ github.actor }}"
25-
# - name: Checkout
26-
# uses: actions/checkout@v4
2725
- name: Set up python
28-
- uses: actions/setup-python@v5
26+
uses: actions/setup-python@v5
2927
with:
3028
python-version: '3.11'
3129
- name: Build
32-
- uses: actions/checkout@v4
30+
uses: actions/checkout@v4
3331
run: make compile-with-docker-all
3432
- name: Release
35-
- uses: softprops/action-gh-release@v2
33+
uses: softprops/action-gh-release@v2
3634
if: startsWith(github.ref, 'refs/tags/')
3735
with:
3836
files: |

0 commit comments

Comments
 (0)