From 5fb9da037e937afacf685d247a183b2f8efb282b Mon Sep 17 00:00:00 2001 From: Jordy Romuald <87231934+JordyRo1@users.noreply.github.com> Date: Tue, 7 May 2024 18:30:13 +0200 Subject: [PATCH] fix: hyperlane artifacts name (#3) * fix: hyperlane artifacts name * fix: typo --- .github/workflows/release.yml | 10 +++++----- .github/workflows/test.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c3dfbdd..1a6429d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,8 +33,8 @@ jobs: cd filtered_artifacts zip -r ../artifacts.zip . cd .. - sha256sum artifacts.zip > artifacts.zip.sha256 - md5sum artifacts.zip > artifacts.zip.md5 + sha256sum artifacts.zip > hyerlane-starknet-${{ github.ref_name }}.CHECKSUM + md5sum artifacts.zip > hyerlane-starknet-${{ github.ref_name }}.CHECKSUM.MD5 - name: Find zip files run: | @@ -45,8 +45,8 @@ jobs: uses: softprops/action-gh-release@v1 with: files: | - artifacts.zip - artifacts.zip.sha256 - artifacts.zip.md5 + hyerlane-starknet-${{ github.ref_name }}.zip + hyerlane-starknet-${{ github.ref_name }}.CHECKSUM + hyerlane-starknet-${{ github.ref_name }}.CHECKSUM.MD5 \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1b34d75..356e114 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Tests +name: tests on: push: pull_request: