Skip to content

Commit

Permalink
v0.11.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Aug 24, 2020
1 parent 749317b commit c945f52
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/create_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,20 @@ jobs:
- id: create_archive
run: |
ARCHIVE=gleam-$TAG_NAME-macos.tar.gz
tar -czvf $ARCHIVE -C target/release gleam
echo ::set-output name=ASSET::$ARCHIVE
cd target/release
tar -czvf $ARCHIVE gleam
ls -lh
echo ::set-output name=ASSET_NAME::$ARCHIVE
echo ::set-output name=ASSET_PATH::$PWD/$ARCHIVE
env:
TAG_NAME: ${{ github.event.release.tag_name }}
- uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ${{ steps.create_archive.outputs.ASSET }}
asset_name: ${{ steps.create_archive.outputs.ASSET }}
asset_path: ${{ steps.create_archive.outputs.ASSET_PATH }}
asset_name: ${{ steps.create_archive.outputs.ASSET_NAME }}
asset_content_type: application/gzip

build_release_linux:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v0.11.0-rc2 - Unreleased
## v0.11.0-rc2 - 2020-08-24

- The formatter style has been improved to render some single argument calls
in a more compact style.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gleam"
version = "0.11.0-dev"
version = "0.11.0-rc2"
authors = ["Louis Pilfold <[email protected]>"]
edition = "2018"

Expand Down

0 comments on commit c945f52

Please sign in to comment.