forked from spinframework/spin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release zipfile and checksum file (spinframework#282)
* release zipfile and checksum file Signed-off-by: Matthew Fisher <[email protected]> * use compact multi-line syntax Signed-off-by: Matthew Fisher <[email protected]> * update release process Signed-off-by: Matthew Fisher <[email protected]>
- Loading branch information
1 parent
2cd9434
commit 42d28bb
Showing
2 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,12 +105,17 @@ jobs: | |
cp readme.md LICENSE ${{ matrix.config.targetDir }}/spin${{ matrix.config.extension }} _dist/ | ||
cd _dist | ||
tar czf spin-${{ env.RELEASE_VERSION }}-${{ env.RUNNER_OS }}-${{ matrix.config.arch }}.tar.gz readme.md LICENSE spin${{ matrix.config.extension }} | ||
zip -r spin-${{ env.RELEASE_VERSION }}-${{ env.RUNNER_OS }}-${{ matrix.config.arch }}.zip readme.md LICENSE spin${{ matrix.config.extension }} | ||
shasum -a 256 *.tar.gz *.zip > checksums-${{ env.RELEASE_VERSION }}.txt | ||
- name: upload binary as GitHub artifact | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: spin | ||
path: _dist/spin-${{ env.RELEASE_VERSION }}-${{ env.RUNNER_OS }}-${{ matrix.config.arch }}.tar.gz | ||
path: | | ||
_dist/spin-${{ env.RELEASE_VERSION }}-${{ env.RUNNER_OS }}-${{ matrix.config.arch }}.tar.gz | ||
_dist/spin-${{ env.RELEASE_VERSION }}-${{ env.RUNNER_OS }}-${{ matrix.config.arch }}.zip | ||
_dist/checksums-${{ env.RELEASE_VERSION }}.txt | ||
- name: upload binary to canary GitHub release | ||
uses: svenstaro/[email protected] | ||
|
@@ -124,4 +129,4 @@ jobs: | |
prerelease: true | ||
body: | | ||
This is a "canary" release of the most recent commits on our main branch. Canary is **not stable**. | ||
It is only intended for developers wishing to try out the latest features in Spin, some of which may not be fully implemented. | ||
It is only intended for developers wishing to try out the latest features in Spin, some of which may not be fully implemented. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters