Skip to content

Commit

Permalink
Ci: fix artifacts typo (#5)
Browse files Browse the repository at this point in the history
* fix: hyperlane artifacts name

* fix: typo

* fix: typo

* Ci: Typo error
  • Loading branch information
JordyRo1 authored May 7, 2024
1 parent d3988f2 commit 8c39481
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests
name: tests
on:
push:
pull_request:
Expand Down

0 comments on commit 8c39481

Please sign in to comment.