Skip to content

Commit

Permalink
fix references
Browse files Browse the repository at this point in the history
  • Loading branch information
cryi committed Oct 27, 2024
1 parent 2f12a9c commit cdc23e1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 38 deletions.
42 changes: 6 additions & 36 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,47 +78,17 @@ jobs:
push: true
provenance: false

- name: build tezos v21.0-rc1
- name: build tezos v21.0-rc4
uses: docker/build-push-action@v5
if: ${{ steps.prep.outputs.NEEDS_RELEASE == 'true'}}
with:
file: containers/tezos/Containerfile
context: .
platforms: linux/amd64,linux/arm64
build-args: |
PROTOCOLS=PsParisC,PsquebeC
IMAGE_TAG=octez-v21.0-rc1
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
tags: ghcr.io/tez-capital/tezbox:tezos-v21.0-rc1.${{steps.prep.outputs.CURRENT_DATE}},ghcr.io/tez-capital/tezbox:tezos-v21.0-rc1
push: true
provenance: false

- name: build tezos v21.0-rc2
uses: docker/build-push-action@v5
if: ${{ steps.prep.outputs.NEEDS_RELEASE == 'true'}}
with:
file: containers/tezos/Containerfile
file: containers/tzc-tezos/Containerfile
context: .
platforms: linux/amd64,linux/arm64
build-args: |
PROTOCOLS=PsParisC,PsQuebecB
IMAGE_TAG=octez-v21.0-rc2
PROTOCOLS=PsParisC,PsQEna42
IMAGE_TAG=latest
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
tags: ghcr.io/tez-capital/tezbox:tezos-v21.0-rc2.${{steps.prep.outputs.CURRENT_DATE}},ghcr.io/tez-capital/tezbox:tezos-v21.0-rc2
tags: ghcr.io/tez-capital/tezbox:tezos-v21.0-rc4.${{steps.prep.outputs.CURRENT_DATE}},ghcr.io/tez-capital/tezbox:tezos-v21.0-rc4
push: true
provenance: false

- name: build tezos v21.0-rc3
uses: docker/build-push-action@v5
if: ${{ steps.prep.outputs.NEEDS_RELEASE == 'true'}}
with:
file: containers/tezos/Containerfile
context: .
platforms: linux/amd64,linux/arm64
build-args: |
PROTOCOLS=PsParisC,PsqenaVw
IMAGE_TAG=octez-v21.0-rc3
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
tags: ghcr.io/tez-capital/tezbox:tezos-v21.0-rc3.${{steps.prep.outputs.CURRENT_DATE}},ghcr.io/tez-capital/tezbox:tezos-v21.0-rc3
push: true
provenance: false
provenance: false
2 changes: 1 addition & 1 deletion containers/tezos/Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG IMAGE_TAG=octez-v20.3

FROM ghcr.io/tez-capital/tezos:${IMAGE_TAG}
FROM docker.io/tezos/tezos:${IMAGE_TAG}

ARG PROTOCOLS=parisbox

Expand Down
2 changes: 1 addition & 1 deletion containers/tzc-tezos/Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG IMAGE_TAG=octez-v20.3

FROM docker.io/tezos/tezos:${IMAGE_TAG}
FROM ghcr.io/tez-capital/tezos:${IMAGE_TAG}

ARG PROTOCOLS=parisbox

Expand Down

0 comments on commit cdc23e1

Please sign in to comment.