Signed-off-by: spv <spv0x04@proton.me>
This commit is contained in:
spv 2024-07-26 13:31:35 +02:00
parent 9fec8beffc
commit 8e5cd6e1bf
No known key found for this signature in database
GPG Key ID: A527CD7A0F9353D8

@ -11,14 +11,14 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: install rust
- name: Install Rust
run: apt update && apt install cargo -y
- name: Build
run: cargo build --release
- name: Hash Release
id: get-hash
run: |
echo "TAG_NAME=$(sha256sum ./target/release/rsa_implementation)" >> $GITHUB_OUTPUT
echo "TAG_NAME=$(sha256sum ./target/release/rsa_implementation | head -c 64)" >> $GITHUB_OUTPUT
- name: Publish
uses: akkuman/gitea-release-action@v1
env: