From 8c3948138b2b793307f11ab8b9ad83b99cd66e5c Mon Sep 17 00:00:00 2001 From: Jordy Romuald <87231934+JordyRo1@users.noreply.github.com> Date: Tue, 7 May 2024 18:40:10 +0200 Subject: [PATCH] Ci: fix artifacts typo (#5) * fix: hyperlane artifacts name * fix: typo * fix: typo * Ci: Typo error --- .github/workflows/release.yml | 12 ++++++------ .github/workflows/test.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c3dfbdd..dcc7e9e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,10 +31,10 @@ jobs: - name: Build artifact zip run: | cd filtered_artifacts - zip -r ../artifacts.zip . + zip -r ../hyperlane-starknet-${{ github.ref_name }}.zip . cd .. - sha256sum artifacts.zip > artifacts.zip.sha256 - md5sum artifacts.zip > artifacts.zip.md5 + sha256sum hyperlane-starknet-${{ github.ref_name }}.zip > hyperlane-starknet-${{ github.ref_name }}.CHECKSUM + md5sum hyperlane-starknet-${{ github.ref_name }}.zip > hyperlane-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 + hyperlane-starknet-${{ github.ref_name }}.zip + hyperlane-starknet-${{ github.ref_name }}.CHECKSUM + hyperlane-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: