Skip to content

Commit

Permalink
Add an artifact for Apple M1 (darwin/arm64) (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkroh committed Nov 4, 2021
1 parent 830cdb4 commit 94f4d15
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
-output='build/bin/{{.Dir}}-{{.OS}}-{{.Arch}}' \
-os='windows linux darwin freebsd' \
-arch='amd64 386 arm arm64' \
-osarch='!darwin/386 !darwin/arm !darwin/arm64' ./cmd/gvm
-osarch='!darwin/386 !darwin/arm' ./cmd/gvm
- name: create draft release
id: create_release
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Added

## [0.3.2]

### Added

- Add an artifact for Apple M1 (darwin/arm64).

## [0.3.1]

### Changed
Expand Down Expand Up @@ -112,7 +118,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

Initial release.

[Unreleased]: https://github.com/andrewkroh/gvm/compare/v0.3.1...HEAD
[Unreleased]: https://github.com/andrewkroh/gvm/compare/v0.3.2...HEAD
[0.3.2]: https://github.com/andrewkroh/gvm/releases/tag/v0.3.2
[0.3.1]: https://github.com/andrewkroh/gvm/releases/tag/v0.3.1
[0.3.0]: https://github.com/andrewkroh/gvm/releases/tag/v0.3.0
[0.2.4]: https://github.com/andrewkroh/gvm/releases/tag/v0.2.4
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Linux:

``` bash
# Linux Example (assumes ~/bin is in PATH).
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.1/gvm-linux-amd64
curl -sL -o ~/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.2/gvm-linux-amd64
chmod +x ~/bin/gvm
eval "$(gvm 1.17.2)"
go version
Expand All @@ -41,7 +41,7 @@ macOS:

``` bash
# macOS Example
curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.1/gvm-darwin-amd64
curl -sL -o /usr/local/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.3.2/gvm-darwin-amd64
chmod +x /usr/local/bin/gvm
eval "$(gvm 1.17.2)"
go version
Expand All @@ -51,7 +51,7 @@ Windows (Powershell):

```
[Net.ServicePointManager]::SecurityProtocol = "tls12"
Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.3.1/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
Invoke-WebRequest -URI https://github.com/andrewkroh/gvm/releases/download/v0.3.2/gvm-windows-amd64.exe -Outfile C:\Windows\System32\gvm.exe
gvm --format=powershell 1.17.2 | Invoke-Expression
go version
```
Expand All @@ -62,4 +62,4 @@ Use `gvm` with fish shell by executing `gvm 1.17.2 | source` in lieu of using `e

For existing Go users:

`go install github.com/andrewkroh/gvm/cmd/gvm@v0.3.1`
`go install github.com/andrewkroh/gvm/cmd/gvm@v0.3.2`

0 comments on commit 94f4d15

Please sign in to comment.