Skip to content

Commit

Permalink
Add file checksums as part of release description
Browse files Browse the repository at this point in the history
  • Loading branch information
filippsen committed Apr 12, 2021
1 parent 14e0291 commit ddab5ac
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,14 @@ jobs:
- uses: actions/checkout@v2

- name: Build
id: build
run: |
curl -s https://get.space.sh | sudo sh
sh ./make.sh
ls -lhat ./release
cd release
echo ::set-output name=podcversion::$(sha256sum --tag podc)
echo ::set-output name=podcruntimeversion::$(sha256sum --tag podc-podman-runtime)
cd ..
- name: Create Release
id: create_release
Expand All @@ -39,8 +43,8 @@ jobs:
release_name: ${{ github.ref }}
body: |
Check the attachments below for this release's prebuilt executables:
* podc
* podc-podman-runtime
* ${{ steps.build.outputs.podcversion }}
* ${{ steps.build.outputs.podcruntimeversion }}
draft: false
prerelease: false

Expand Down

0 comments on commit ddab5ac

Please sign in to comment.