fix(ci): remove env var in workflow

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2022-12-04 21:06:21 +01:00 committed by David Mehren
parent 8010ee1f71
commit fea4656035

View file

@ -18,14 +18,13 @@ permissions:
env: env:
NODE_VERSION: 18 NODE_VERSION: 18
HEAD_COMMIT_HASH: "${{ !!github.event.pull_request && github.event.pull_request.head.sha || github.sha }}" HEAD_COMMIT_HASH: "${{ !!github.event.pull_request && github.event.pull_request.head.sha || github.sha }}"
HEAD_REF: "${{ !!github.event.pull_request && github.event.pull_request.head.label || github.ref }}"
defaults: defaults:
run: run:
working-directory: frontend working-directory: frontend
concurrency: concurrency:
group: ${{ github.workflow }}-${{ env.HEAD_REF }}-${{ github.event_name }} group: ${{ github.workflow }}-${{ !!github.event.pull_request && github.event.pull_request.head.label || github.ref }}-${{ github.event_name }}
cancel-in-progress: true cancel-in-progress: true
jobs: jobs: