Skip to content

Commit

Permalink
fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Sep 18, 2023
1 parent b74e6c5 commit ad3562e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/build-evm/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@ runs:
file_path: ./evm-config.yaml
main_key: ${{ inputs.type }}
- name: Print Variables for the selected EVM type
shell: bash
run: |
echo "Implementation: ${{ steps.evm-config-reader.outputs.impl }}"
echo "Repository: ${{ steps.evm-config-reader.outputs.repo }}"
echo "Reference: ${{ steps.evm-config-reader.outputs.ref }}"
- name: Build the EVM using Geth action
if: steps.evm-config-reader.outputs.impl == 'geth'
uses: "./.github/actions/build-geth-evm"
uses: ./.github/actions/build-geth-evm
with:
repo: ${{ steps.evm-config-reader.outputs.repo }}
ref: ${{ steps.evm-config-reader.outputs.ref }}
1 change: 1 addition & 0 deletions .github/actions/build-geth-evm/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ runs:
go-version: ${{ inputs.golang }}
cache-dependency-path: go-ethereum/go.sum
- name: Build evm cmd
shell: bash
run: |
mkdir -p $GITHUB_WORKSPACE/bin
cd $GITHUB_WORKSPACE/go-ethereum/cmd/evm
Expand Down

0 comments on commit ad3562e

Please sign in to comment.