Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
floodcode committed Aug 1, 2024
1 parent 5147245 commit e110135
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
with:
docker-username: ${{ secrets.CR_USERNAME }}
docker-password: ${{ secrets.CR_PAT }}
docker-base-repo: ghcr.io/ator-development/ator-protocol-dev-${{ matrix.platform.image-suffix }}
docker-base-repo: ${{ env.image-name }}-${{ matrix.platform.image-suffix }}
docker-tag: ${{ env.image-tag }}
docker-platform: ${{ matrix.platform.name }}
version: ${{ github.sha }}
Expand All @@ -51,7 +51,7 @@ jobs:
with:
docker-username: ${{ secrets.CR_USERNAME }}
docker-password: ${{ secrets.CR_PAT }}
docker-base-repo: ghcr.io/ator-development/ator-protocol-dev
docker-base-repo: ${{ env.image-name }}
docker-tag: ${{ env.image-tag }}
event-name: ${{ github.event_name }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/live-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
workflow_dispatch:

env:
image-tag: ${{ github.ref_name }}
image-name: ghcr.io/ator-development/ator-protocol
image-tag: ${{ github.ref_name }}
da-1-hc-url: http://49.13.145.234:9230/tor/status-vote/current/consensus
da-2-hc-url: http://5.161.108.187:9230/tor/status-vote/current/consensus
da-3-hc-url: http://5.78.90.106:9230/tor/status-vote/current/consensus
Expand All @@ -33,7 +33,7 @@ jobs:
with:
docker-username: ${{ secrets.CR_USERNAME }}
docker-password: ${{ secrets.CR_PAT }}
docker-base-repo: ghcr.io/ator-development/ator-protocol-${{ matrix.platform.image-suffix }}
docker-base-repo: ${{ env.image-name }}-${{ matrix.platform.image-suffix }}
docker-tag: ${{ env.image-tag }}
docker-platform: ${{ matrix.platform.name }}
version: ${{ github.sha }}
Expand All @@ -51,7 +51,7 @@ jobs:
with:
docker-username: ${{ secrets.CR_USERNAME }}
docker-password: ${{ secrets.CR_PAT }}
docker-base-repo: ghcr.io/ator-development/ator-protocol
docker-base-repo: ${{ env.image-name }}
docker-tag: ${{ env.image-tag }}
event-name: ${{ github.event_name }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/stage-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
workflow_dispatch:

env:
image-tag: ${{ github.sha }}
image-name: ghcr.io/ator-development/ator-protocol-stage
image-tag: ${{ github.sha }}
da-1-hc-url: http://49.13.145.234:9130/tor/status-vote/current/consensus
da-2-hc-url: http://5.161.108.187:9130/tor/status-vote/current/consensus
da-3-hc-url: http://5.78.90.106:9130/tor/status-vote/current/consensus
Expand All @@ -33,7 +33,7 @@ jobs:
with:
docker-username: ${{ secrets.CR_USERNAME }}
docker-password: ${{ secrets.CR_PAT }}
docker-base-repo: ghcr.io/ator-development/ator-protocol-stage-${{ matrix.platform.image-suffix }}
docker-base-repo: ${{ env.image-name }}-${{ matrix.platform.image-suffix }}
docker-tag: ${{ env.image-tag }}
docker-platform: ${{ matrix.platform.name }}
version: ${{ github.sha }}
Expand All @@ -51,7 +51,7 @@ jobs:
with:
docker-username: ${{ secrets.CR_USERNAME }}
docker-password: ${{ secrets.CR_PAT }}
docker-base-repo: ghcr.io/ator-development/ator-protocol-stage
docker-base-repo: ${{ env.image-name }}
docker-tag: ${{ env.image-tag }}
event-name: ${{ github.event_name }}

Expand Down
2 changes: 1 addition & 1 deletion operations/anon-da-node-live.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ job "ator-dir-auth-live" {
}

config {
image = "ghcr.io/ator-development/ator-protocol-live:PLACEIMAGETAGHERE"
image = "ghcr.io/ator-development/ator-protocol:PLACEIMAGETAGHERE"
ports = ["orport", "dirport"]
volumes = [
"local/anonrc:/etc/anon/anonrc",
Expand Down

0 comments on commit e110135

Please sign in to comment.