Skip to content

Commit

Permalink
Update action.yml (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroist authored Dec 5, 2024
1 parent fe12726 commit 04dceb7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/shielder-relayer/build-and-push/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
with:
context: .
builder: ${{ steps.buildx.outputs.name }}
file: ./crates/shielder-relayer/docker/Dockerfile
file: ./crates/shielder-relayer/docker/Dockerfile.client
push: true
tags: "${{ inputs.ecr-private-host }}/shielder-relayer:\
${{ steps.get-ref-properties.outputs.sha }}"
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/manual-publish-dev-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ jobs:
- name: GIT | Checkout
uses: actions/checkout@v4

- name: Prepare Rust env
uses: ./.github/actions/prepare-rust-env
with:
poseidon-gadget-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
zkos-circuits-private-key: ${{ secrets.ZKOS_CIRCUITS_SSH_PRIVATE_KEY }}

- name: Build relayer
run: cd crates/shielder-relayer && make build

- name: DOCKER | Build and push
uses: ./.github/actions/shielder-relayer/build-and-push
id: build_shielder_relayer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ jobs:
- name: GIT | Checkout
uses: actions/checkout@v4

- name: Prepare Rust env
uses: ./.github/actions/prepare-rust-env
with:
poseidon-gadget-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
zkos-circuits-private-key: ${{ secrets.ZKOS_CIRCUITS_SSH_PRIVATE_KEY }}

- name: Build relayer
run: cd crates/shielder-relayer && make build

- name: DOCKER | Build and push
uses: ./.github/actions/shielder-relayer/build-and-push
id: build_shielder_relayer
Expand Down

0 comments on commit 04dceb7

Please sign in to comment.