Skip to content

Commit

Permalink
Trying more things
Browse files Browse the repository at this point in the history
  • Loading branch information
valerena committed May 21, 2024
1 parent 09316ac commit 8f0836a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/check-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ jobs:
name: Build new version and check
id: check-new-version
run: |
mkdir ./bin2
mv ./bin/* ./bin2
make compile-with-docker-all
latest_version=$(strings bin/aws-lambda-rie* | grep '^go1\.' | uniq)
latest_version=$(strings bin/aws-lambda-rie* | grep '^go1\.' | sort | uniq)
echo "latest_version=$latest_version"
make check-binaries
- if: always()
Expand All @@ -71,12 +73,13 @@ jobs:
echo "OUTCOME=${{ steps.check-new-version.outcome }}"
echo "latest-version: ${{ steps.check-new-version.outputs.latest_version }}"
echo "REPORT=[${{ steps.save-output.outputs.report_contents }}"
- name: Second step
- if: always()
name: Second step
id: second-step
run: |
echo "Echo echo echo **${{ steps.check-new-version.outputs.fixed }}**"
# - name: Create Issue
# - if: always()
# name: Create Issue
# id: create-issue
# uses: dacbd/create-issue-action@main
# with:
Expand Down

0 comments on commit 8f0836a

Please sign in to comment.