Skip to content

Commit e8a1fa6

Browse files
authored
prep for 0.3.3 release (#48)
Signed-off-by: Josh Dolitsky <jdolitsky@gmail.com>
1 parent f5f3c4d commit e8a1fa6

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.codefresh/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ steps:
2222
stage: release
2323
type: push
2424
candidate: ${{BuildDockerImage}}
25-
image_name: ocistorage/${{CF_REPO_NAME}}
25+
image_name: orasbot/${{CF_REPO_NAME}}
2626
registry: dockerhub

.codefresh/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ steps:
3232
stage: release
3333
type: push
3434
candidate: ${{BuildDockerImage}}
35-
image_name: ocistorage/${{CF_REPO_NAME}}
35+
image_name: orasbot/${{CF_REPO_NAME}}
3636
tag: ${{CF_BRANCH_TAG_NORMALIZED}}
3737
registry: dockerhub

BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ and run [.codefresh/release.yml](.codefresh/release.yml).
6464

6565
This will result in running [goreleaser](https://goreleaser.com/)
6666
to upload release artiacts, as well as push a tag to Docker Hub for
67-
the image `ocistorage/oras`.
67+
the image `orasbot/oras`.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,22 +66,22 @@ Install `oras` using [GoFish](https://gofi.sh/):
6666
```
6767
gofish install oras
6868
==> Installing oras...
69-
🐠 oras 0.3.2: installed in 65.131245ms
69+
🐠 oras 0.3.3: installed in 65.131245ms
7070
```
7171

7272
or install manually from the latest [release artifacts](https://github.com/deislabs/oras/releases):
7373
```
7474
# Linux
75-
curl -LO https://github.com/deislabs/oras/releases/download/v0.3.2/oras_0.3.2_linux_amd64.tar.gz
75+
curl -LO https://github.com/deislabs/oras/releases/download/v0.3.3/oras_0.3.3_linux_amd64.tar.gz
7676
7777
# macOS
78-
curl -LO https://github.com/deislabs/oras/releases/download/v0.3.2/oras_0.3.2_darwin_amd64.tar.gz
78+
curl -LO https://github.com/deislabs/oras/releases/download/v0.3.3/oras_0.3.3_darwin_amd64.tar.gz
7979
8080
# unpack, install, dispose
8181
mkdir -p oras-install/
82-
tar -zxf oras_0.3.2_*.tar.gz -C oras-install/
82+
tar -zxf oras_0.3.3_*.tar.gz -C oras-install/
8383
mv oras-install/oras /usr/local/bin/
84-
rm -rf oras_0.3.2_*.tar.gz oras-install/
84+
rm -rf oras_0.3.3_*.tar.gz oras-install/
8585
```
8686

8787
Then, to run:

0 commit comments

Comments
 (0)