Skip to content

Commit c7087d4

Browse files
committed
Fixing release
1 parent c81bba2 commit c7087d4

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/release.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,12 @@ on:
1111
description: "Version to use for further development"
1212
required: true
1313
default: "X.Y.Z-RIE"
14-
1514
jobs:
1615
Release:
1716
environment: Release
1817
runs-on: ubuntu-latest
1918
steps:
20-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2120
- name: Configure Git User # may be removed after https://github.com/actions/checkout/issues/13 is resolved
2221
run: |
2322
git config user.email "${{ github.actor }}@users.noreply.github.com"
@@ -27,15 +26,15 @@ jobs:
2726
with:
2827
python-version: '3.11'
2928
- name: Build
30-
run: make compile-with-docker-all
29+
run: make compile-with-docker-all #they are all in is bin/aws-lambda-rie*
3130
- name: Release
32-
uses: softprops/action-gh-release@v2
33-
if: startsWith(github.ref, 'refs/tags/')
31+
uses: softprops/action-gh-release@v2 # this triggers release if the assets are tagged with refs/tags
32+
# if: startsWith(github.ref, 'refs/tags/')
3433
with:
3534
files: |
36-
aws-lambda-rie
37-
aws-lambda-rie-arm64
38-
aws-lambda-rie-x64
35+
bin/aws-lambda-rie
36+
bin/aws-lambda-rie-arm64
37+
bin/aws-lambda-rie-x64
3938
# --------
4039
# Add a step to upload each binary asset
4140
# - name: Upload aws-lambda-rie

0 commit comments

Comments
 (0)