Skip to content

Commit

Permalink
Merge pull request #576 from IntersectMBO/chore/555-update-cardano-db…
Browse files Browse the repository at this point in the history
…-sync-version-in-docker-compose

[#555] Update Cardano DB Sync version in Docker Compose
  • Loading branch information
placek authored Mar 27, 2024
2 parents 43ff59c + 31d4318 commit 4eec162
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/resync-cardano-node-and-db-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@ jobs:
with:
ssh-private-key: ${{ secrets.GHA_SSH_PRIVATE_KEY }}

- name: Set domain
run: |
if [[ "${{ inputs.environment }}" == "staging" ]]; then
echo "DOMAIN=staging.govtool.byron.network" >> $GITHUB_ENV
elif [[ "${{ inputs.environment }}" == "beta" ]]; then
echo "DOMAIN=sanchogov.tools" >> $GITHUB_ENV
else
echo "DOMAIN=${DOMAIN:-$ENVIRONMENT-$CARDANO_NETWORK.govtool.byron.network}" >> $GITHUB_ENV
fi
- name: Destroy Cardano Node, DB sync and Postgres database
run: |
make --debug=b destroy-cardano-node-and-dbsync
Expand Down
4 changes: 2 additions & 2 deletions scripts/govtool/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ include config.mk
.DEFAULT_GOAL := info

# image tags
cardano_node_image_tag := 8.8.0-pre
cardano_db_sync_image_tag := sancho-4-0-0-fix-config
cardano_node_image_tag := 8.9.0
cardano_db_sync_image_tag := sancho-4.1.0

.PHONY: all
all: deploy-stack notify
Expand Down

0 comments on commit 4eec162

Please sign in to comment.