Skip to content

Commit

Permalink
prep for 0.3.3 release (#48)
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Dolitsky <[email protected]>
  • Loading branch information
jdolitsky authored Jan 25, 2019
1 parent f5f3c4d commit e8a1fa6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .codefresh/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ steps:
stage: release
type: push
candidate: ${{BuildDockerImage}}
image_name: ocistorage/${{CF_REPO_NAME}}
image_name: orasbot/${{CF_REPO_NAME}}
registry: dockerhub
2 changes: 1 addition & 1 deletion .codefresh/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ steps:
stage: release
type: push
candidate: ${{BuildDockerImage}}
image_name: ocistorage/${{CF_REPO_NAME}}
image_name: orasbot/${{CF_REPO_NAME}}
tag: ${{CF_BRANCH_TAG_NORMALIZED}}
registry: dockerhub
2 changes: 1 addition & 1 deletion BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ and run [.codefresh/release.yml](.codefresh/release.yml).

This will result in running [goreleaser](https://goreleaser.com/)
to upload release artiacts, as well as push a tag to Docker Hub for
the image `ocistorage/oras`.
the image `orasbot/oras`.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,22 +66,22 @@ Install `oras` using [GoFish](https://gofi.sh/):
```
gofish install oras
==> Installing oras...
🐠 oras 0.3.2: installed in 65.131245ms
🐠 oras 0.3.3: installed in 65.131245ms
```

or install manually from the latest [release artifacts](https://github.com/deislabs/oras/releases):
```
# Linux
curl -LO https://github.com/deislabs/oras/releases/download/v0.3.2/oras_0.3.2_linux_amd64.tar.gz
curl -LO https://github.com/deislabs/oras/releases/download/v0.3.3/oras_0.3.3_linux_amd64.tar.gz
# macOS
curl -LO https://github.com/deislabs/oras/releases/download/v0.3.2/oras_0.3.2_darwin_amd64.tar.gz
curl -LO https://github.com/deislabs/oras/releases/download/v0.3.3/oras_0.3.3_darwin_amd64.tar.gz
# unpack, install, dispose
mkdir -p oras-install/
tar -zxf oras_0.3.2_*.tar.gz -C oras-install/
tar -zxf oras_0.3.3_*.tar.gz -C oras-install/
mv oras-install/oras /usr/local/bin/
rm -rf oras_0.3.2_*.tar.gz oras-install/
rm -rf oras_0.3.3_*.tar.gz oras-install/
```

Then, to run:
Expand Down

0 comments on commit e8a1fa6

Please sign in to comment.