Skip to content

Commit

Permalink
ci: fix env variable usage
Browse files Browse the repository at this point in the history
  • Loading branch information
evilrobot-01 committed May 7, 2024
1 parent a2b41c6 commit a975734
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- uses: "./.github/actions/init"
with:
git-user: ${{ GITHUB_ACTOR }}
git-user: ${{ env.GITHUB_ACTOR }}
cache-key: build

- name: Check Feature Contracts Excl.
Expand All @@ -47,7 +47,7 @@ jobs:

- uses: "./.github/actions/init"
with:
git-user: ${{ GITHUB_ACTOR }}
git-user: ${{ env.GITHUB_ACTOR }}
cache-key: unit-test

- name: Run unit tests
Expand All @@ -61,7 +61,7 @@ jobs:

- uses: "./.github/actions/init"
with:
git-user: ${{ GITHUB_ACTOR }}
git-user: ${{ env.GITHUB_ACTOR }}
cache-key: contract-integration-tests

- name: Run integration tests
Expand All @@ -75,7 +75,7 @@ jobs:

- uses: "./.github/actions/init"
with:
git-user: ${{ GITHUB_ACTOR }}
git-user: ${{ env.GITHUB_ACTOR }}
cache-key: parachain-integration-tests

- name: Run integration tests
Expand Down

0 comments on commit a975734

Please sign in to comment.