Skip to content

Commit

Permalink
final test, please just work this time
Browse files Browse the repository at this point in the history
  • Loading branch information
EchterAlsFake committed Jun 7, 2024
1 parent 58f865a commit 1516a77
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build_cli_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,16 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.PAT }}

- name: Calculate SHA512 for Linux x64
id: sha512_linux_x64
run: |
sha512sum ./artifacts/PornFetch_Linux_CLI_x64 | awk '{ print $1 }' > sha512_linux_x64.txt
- name: Calculate SHA512 for Linux x32
id: sha512_linux_x32
run: |
sha512sum ./artifacts/PornFetch_Linux_CLI_x32 | awk '{ print $1 }' > sha512_linux_x32.txt
- name: Create GitHub Release
id: create_release
if: steps.check_release.outputs.release_exists == 'false'
Expand All @@ -133,6 +143,9 @@ jobs:
release_name: Automated Release v1.0.0-${{ env.GITHUB_SHA_SHORT }}
body: |
This is an automated release generated by the CI/CD pipeline.
SHA512 Checksums:
- PornFetch_Linux_CLI_x64: ${{ steps.sha512_linux_x64.outputs.sha512sum }}
- PornFetch_Linux_CLI_x32: ${{ steps.sha512_linux_x32.outputs.sha512sum }}
draft: false
prerelease: true

Expand Down

0 comments on commit 1516a77

Please sign in to comment.