Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
byeongsu-hong committed Feb 14, 2024
1 parent 4cac2f5 commit d02c45c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ jobs:
pull-requests: write

env:
REPO_NAME: ${GITHUB_REPOSITORY#$GITHUB_REPOSITORY_OWNER/}
ARTIFACT_NAME: $REPO_NAME-${{ github.ref_name }}.zip
ARTIFACT_NAME: ${GITHUB_REPOSITORY#$GITHUB_REPOSITORY_OWNER/}-${{ github.ref_name }}.zip

name: artifact
name: artifact
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -41,8 +40,8 @@ jobs:
cargo generate-lockfile
make ci-build
mv wasm_codes.zip $ARTIFACT_NAME
sha256sum $ARTIFACT_NAME.zip > $ARTIFACT_NAME.CHECKSUM
md5sum $ARTIFACT_NAME.zip > $ARTIFACT_NAME.CHECKSUM.MD5
sha256sum $ARTIFACT_NAME > $ARTIFACT_NAME.CHECKSUM
md5sum $ARTIFACT_NAME > $ARTIFACT_NAME.CHECKSUM.MD5
- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit d02c45c

Please sign in to comment.