From 022415656fed7847b8c9a69561eecb39647d3ea0 Mon Sep 17 00:00:00 2001 From: Serge Koudoro Date: Thu, 21 Sep 2023 13:47:11 -0400 Subject: [PATCH] typo --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 133902ea..462f340e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,14 +29,14 @@ jobs: STATUS: ${{github.event.pull_request.head.repo.full_name != github.repository}} steps: - name: Save the PR number in an artifact - if: ${{ github.event == 'pull_request' }} + if: ${{ github.event_name == 'pull_request' }} shell: bash env: PULL_REQUEST_NUMBER: ${{ github.event.number }} run: echo $PULL_REQUEST_NUMBER > pull_request_number.txt - name: Upload the PULL REQUEST number - if: ${{ github.event == 'pull_request' }} + if: ${{ github.event_name == 'pull_request' }} uses: actions/upload-artifact@v2 with: name: pull_request_number