Skip to content

Commit 8f0836a

Browse files
committed
Trying more things
1 parent 09316ac commit 8f0836a

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/check-binaries.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@ jobs:
5252
name: Build new version and check
5353
id: check-new-version
5454
run: |
55+
mkdir ./bin2
56+
mv ./bin/* ./bin2
5557
make compile-with-docker-all
56-
latest_version=$(strings bin/aws-lambda-rie* | grep '^go1\.' | uniq)
58+
latest_version=$(strings bin/aws-lambda-rie* | grep '^go1\.' | sort | uniq)
5759
echo "latest_version=$latest_version"
5860
make check-binaries
5961
- if: always()
@@ -71,12 +73,13 @@ jobs:
7173
echo "OUTCOME=${{ steps.check-new-version.outcome }}"
7274
echo "latest-version: ${{ steps.check-new-version.outputs.latest_version }}"
7375
echo "REPORT=[${{ steps.save-output.outputs.report_contents }}"
74-
- name: Second step
76+
- if: always()
77+
name: Second step
7578
id: second-step
7679
run: |
7780
echo "Echo echo echo **${{ steps.check-new-version.outputs.fixed }}**"
78-
79-
# - name: Create Issue
81+
# - if: always()
82+
# name: Create Issue
8083
# id: create-issue
8184
# uses: dacbd/create-issue-action@main
8285
# with:

0 commit comments

Comments
 (0)