Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
hemnstill committed Oct 12, 2023
1 parent a1d3e55 commit 93a54f7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/zstd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,19 @@ jobs:
with:
workflow: ${{ github.workflow }}
artifact: build-mingw

release:
needs: [test-alpine,
test-ubuntu,
test-windows,
test-nanoserver]
uses: ./.github/workflows/release.yml
with:
workflow: ${{ github.workflow }}
tool_version: '1.5.5'
prepare_body: |
bsdtar -Oxf ./build-musl/build-musl.tar.gz build-musl.md >> body.md
bsdtar -Oxf ./build-mingw/build-mingw.tar.gz build-mingw.md >> body.md
artifacts: ./build-musl/build-musl.tar.gz,./build-mingw/build-mingw.tar.gz
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions zstd/build_musl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ strip "$tool_name"
{ printf '### %s
SHA-256: %s
%s
%s
' "$self_toolset_name.tar.gz" "$(sha256sum $tool_name)" "$("./$tool_name" --version)" "$download_url"
' "$self_toolset_name.tar.gz" "$(sha256sum $tool_name)" "$("./$tool_name" --version)"
} > "$self_toolset_name.md"

cat "$self_toolset_name.md"
Expand Down

0 comments on commit 93a54f7

Please sign in to comment.