Skip to content

Commit

Permalink
fix: env
Browse files Browse the repository at this point in the history
  • Loading branch information
jpantos committed Aug 16, 2024
1 parent 71ec9cf commit 585bdfe
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/actions/run-tests/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,19 @@ inputs:

runs:
using: 'composite'
env:
PANTOS_ETHEREUM_CONTRACTS: ${{ github.workspace }}/ethereum-contracts
PANTOS_SERVICE_NODE: ${{ github.workspace }}/servicenode
PANTOS_VALIDATOR_NODE: ${{ github.workspace }}/validatornode
PANTOS_E2E_TESTS: ${{ github.workspace }}/e2e-tests

defaults:
run:
shell: bash

steps:
- name: Set environment variables
run: |
echo "PANTOS_ETHEREUM_CONTRACTS=${{ github.workspace }}/ethereum-contracts" >> $GITHUB_ENV
echo "PANTOS_SERVICE_NODE=${{ github.workspace }}/servicenode" >> $GITHUB_ENV
echo "PANTOS_VALIDATOR_NODE=${{ github.workspace }}/validatornode" >> $GITHUB_ENV
echo "PANTOS_E2E_TESTS=${{ github.workspace }}/e2e-tests" >> $GITHUB_ENV
- uses: actions/checkout@v4
with:
path: ${{ env.PANTOS_E2E_TESTS }}
Expand Down

0 comments on commit 585bdfe

Please sign in to comment.