Skip to content

Commit

Permalink
Merge pull request #2067 from blockstack/master
Browse files Browse the repository at this point in the history
Fix GH Actions
  • Loading branch information
CharlieC3 authored Nov 17, 2020
2 parents 3c2b706 + 0920ad0 commit 22d5fa0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/stacks-blockchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,12 @@ jobs:
if [[ -z ${TAG} ]]; then
REF=$(echo ${GITHUB_REF#refs/*/} | tr / -)
if [[ "${REF}" == "master" ]]; then
echo "::set-env name=STRETCH_TAG::latest-stretch"
echo "STRETCH_TAG=latest-stretch" >> $GITHUB_ENV
else
echo "::set-env name=STRETCH_TAG::${REF}-stretch"
echo "STRETCH_TAG=${REF}-stretch" >> $GITHUB_ENV
fi
else
echo "::set-env name=STRETCH_TAG::${TAG}-stretch"
echo "STRETCH_TAG=${TAG}-stretch" >> $GITHUB_ENV
fi
env:
TAG: ${{ github.event.inputs.tag }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ _For building on Windows, follow the rustup installer instructions at https://ru
From there, you can clone this repository:

```bash
git clone https://github.com/blockstack/stacks-blockchain.git
git clone --depth=1 https://github.com/blockstack/stacks-blockchain.git

cd stacks-blockchain
```
Expand Down

0 comments on commit 22d5fa0

Please sign in to comment.