Skip to content

Commit

Permalink
Bump v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zero88 committed Mar 3, 2021
1 parent 11444b9 commit 6543576
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## [v1.1.2](https://github.com/zero88/gh-release-downloader/releases/tag/v1.1.2) (2021-03-03)

### Changed

- Support `macOS` [#3](https://github.com/zero88/gh-release-downloader/issues/3) from @aniqueta

## [v1.1.1](https://github.com/zero88/gh-release-downloader/releases/tag/v1.1.1) (2021-01-04)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Docker Registry for GitHub action cache.
```bash
cat >> ~/.bash_alias <<EOL
#### GHRD
GHRD_VERSION=1.1.1
GHRD_VERSION=1.1.2
alias ghrd="docker run --rm -v /tmp:/tmp zero88/ghrd:$GHRD_VERSION"
EOL

Expand Down
38 changes: 26 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,36 @@ GitHub release downloader CLI
```
2. Use binary in release
- Debian/Ubuntu
```bash
sudo curl -L https://github.com/zero88/gh-release-downloader/releases/download/v1.1.1/ghrd -o /usr/local/bin/ghrd \
- Debian/Ubuntu
```bash
export GHRDVER=1.1.2 && sudo curl -L https://github.com/zero88/gh-release-downloader/releases/download/v$GHRDVER/ghrd -o /usr/local/bin/ghrd \
&& sudo chmod +x /usr/local/bin/ghrd \
&& sudo ln -s /usr/local/bin/ghrd /usr/bin/ghrd \
&& sudo apt install jq -y
```
- Fedora/CentOS/RedHat
```bash
sudo curl -L https://github.com/zero88/gh-release-downloader/releases/download/v1.1.1/ghrd -o /usr/local/bin/ghrd \
&& sudo apt install jq -y \
&& unset GHRDVER
```
- Fedora/CentOS/RedHat
```bash
export GHRDVER=1.1.2 && sudo curl -L https://github.com/zero88/gh-release-downloader/releases/download/v$GHRDVER/ghrd -o /usr/local/bin/ghrd \
&& sudo chmod +x /usr/local/bin/ghrd \
&& sudo ln -s /usr/local/bin/ghrd /usr/bin/ghrd \
&& sudo yum install jq -y
```
&& sudo yum install jq -y \
&& unset GHRDVER
```
- MacOS
```bash
export GHRDVER=1.1.2 && sudo curl -L https://github.com/zero88/gh-release-downloader/releases/download/v$GHRDVER/ghrd -o /usr/local/opt/ghrd/$GHRDVER \
&& ln -s /usr/local/opt/ghrd/$GHRDVER/ghrd /usr/local/bin \
&& sudo chmod +x /usr/local/bin/ghrd \
&& brew install jq \
&& unset GHRDVER
```
## Usage
Expand Down
2 changes: 1 addition & 1 deletion ghrd.m4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=1.1.0
VERSION=1.1.2

# m4_ignore(
echo "This is just a script template, not the script (yet) - pass it to 'argbash' to fix this." >&2
Expand Down

0 comments on commit 6543576

Please sign in to comment.