Skip to content

Commit

Permalink
fix(ci): update condition to run some steps
Browse files Browse the repository at this point in the history
  • Loading branch information
youben11 committed Oct 10, 2023
1 parent 8fba234 commit ec687f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_e2e_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@ jobs:
# this overrides the previous geth version
- name: Set go-ethereum version if specified
if: github.event_name != 'workflow_dispatch' && github.event.inputs.geth_commit != ''
if: github.event_name == 'workflow_dispatch' && github.event.inputs.geth_commit != ''
run: echo "GO_ETHEREUM_VERSION=${{ github.event.inputs.geth_commit }}" >> $GITHUB_ENV

# this overrides the previous ethermint version
- name: Set ethermint version if specified
if: github.event_name != 'workflow_dispatch' && github.event.inputs.ethermint_commit != ''
if: github.event_name == 'workflow_dispatch' && github.event.inputs.ethermint_commit != ''
run: echo "ETHERMINT_VERSION=${{ github.event.inputs.ethermint_commit }}" >> $GITHUB_ENV

# this overrides the previous fhevm_solidity version
- name: Set fhevm_solidity version if specified
if: github.event_name != 'workflow_dispatch' && github.event.inputs.fhevm_solidity_commit != ''
if: github.event_name == 'workflow_dispatch' && github.event.inputs.fhevm_solidity_commit != ''
run: echo "FHEVM_SOLIDITY_VERSION=${{ github.event.inputs.fhevm_solidity_commit }}" >> $GITHUB_ENV

- name: Echo versions parsed from Makefile and go.mod
Expand Down

0 comments on commit ec687f0

Please sign in to comment.