File tree Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -64,17 +64,17 @@ jobs:
6464 shell : bash
6565 run : |
6666 VERSION="${GITHUB_REF#refs/tags/}"
67- staging="gleam-$VERSION-${{ matrix.build }}"
68- mkdir -p "$staging"
6967
7068 if [ "${{ matrix.os }}" = "windows-latest" ]; then
71- cp "target/${{ matrix.target }}/release/gleam.exe" "$staging/"
72- 7z a "$staging.zip" "$staging"
73- echo "::set-env name=ASSET::$staging.zip"
69+ ARCHIVE="gleam-$VERSION-${{ matrix.build }}.zip"
70+ cp "target/${{ matrix.target }}/release/gleam.exe" "gleam.exe"
71+ 7z a "$ARCHIVE.zip" "gleam.exe"
72+ echo "::set-env name=ASSET::$ARCHIVE"
7473 else
75- cp "target/${{ matrix.target }}/release/gleam" "$staging/"
76- tar -czvf "$staging.tar.gz" "$staging"
77- echo "::set-env name=ASSET::$staging.tar.gz"
74+ ARCHIVE="gleam-$VERSION-${{ matrix.build }}.tar.gz"
75+ cp "target/${{ matrix.target }}/release/gleam" "gleam"
76+ tar -czvf "$ARCHIVE" "gleam"
77+ echo "::set-env name=ASSET::$ARCHIVE"
7878 fi
7979
8080 - name : Upload release archive
Original file line number Diff line number Diff line change 66- Gleam can now run eunit without an external build tool.
77- Gleam can now run an Erlang shell without an external build tool.
88
9+ ## v0.12.0-rc3 - 2020-10-24
910## v0.12.0-rc2 - 2020-10-24
1011## v0.12.0-rc1 - 2020-10-24
1112
Original file line number Diff line number Diff line change 11[package ]
22name = " gleam"
3- version = " 0.12.0-dev "
3+ version = " 0.12.0-rc3 "
44authors = [
" Louis Pilfold <[email protected] >" ]
55edition = " 2018"
66
You can’t perform that action at this time.
0 commit comments