Skip to content

Commit

Permalink
[dev] dont skip, pull cached
Browse files Browse the repository at this point in the history
  • Loading branch information
roysc committed May 25, 2023
1 parent c6ce906 commit 53dee38
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/on-pr-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
runs-on: ubuntu-latest
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
# should_skip: ${{ steps.skip_check.outputs.should_skip }}
should_skip: false # XXX dev
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v4
Expand Down
9 changes: 9 additions & 0 deletions scripts/integration-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,12 @@ if [[ -n "$GITHUB_ENV" ]]; then
# Read a private key so we can send from a funded account
echo DEPLOYER_PRIVATE_KEY="$(curl -s $bootnode_endpoint/accounts.csv | head -1 | cut -d',' -f3)" >> "$GITHUB_ENV"
fi

# XXX cached dev images
IMAGE_SERVER=git.vdb.to/cerc-io/ipld-eth-server/ipld-eth-server:dev
IMAGE_CONTRACT=git.vdb.to/cerc-io/ipld-eth-server/contract-deployer:dev

docker pull $IMAGE_SERVER
docker pull $IMAGE_CONTRACT
docker tag $IMAGE_SERVER cerc/ipld-eth-server
docker tag $IMAGE_GETH cerc/contract-deployer

0 comments on commit 53dee38

Please sign in to comment.