Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
farbanas committed Jan 28, 2025
1 parent bba3e5a commit d11bfc9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/push-nyxd-rpcnode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
version:
type: string
description: Which version of nyxd-rpcnode is this?
nyxd_version:
type: string
description: Which nyxd version to use?

env:
WORKING_DIRECTORY: "docker/rpcnode"
Expand Down Expand Up @@ -43,5 +46,5 @@ jobs:
- name: BuildAndPushImageOnHarbor
run: |
docker build -f ${{ env.WORKING_DIRECTORY }}/Dockerfile ${{ env.WORKING_DIRECTORY }} -t harbor.nymte.ch/nym/${{ env.CONTAINER_NAME }}:${{ github.event.inputs.version }} -t harbor.nymte.ch/nym/${{ env.CONTAINER_NAME }}:latest
docker build --arg WASMD_VERSION=${{ github.event.inputs.nyxd_version }} -f ${{ env.WORKING_DIRECTORY }}/Dockerfile ${{ env.WORKING_DIRECTORY }} -t harbor.nymte.ch/nym/${{ env.CONTAINER_NAME }}:${{ github.event.inputs.version }} -t harbor.nymte.ch/nym/${{ env.CONTAINER_NAME }}:latest
docker push harbor.nymte.ch/nym/${{ env.CONTAINER_NAME }} --all-tags

0 comments on commit d11bfc9

Please sign in to comment.