Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mwithi committed Oct 29, 2024
1 parent f0afb93 commit 8878703
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:

- name: Debug GitHub variables
run: |
echo "GITHUB_EVENT_NAME=${GITHUB_EVENT_NAME}"
echo "GITHUB_HEAD_REPOSITORY=${GITHUB_HEAD_REPOSITORY}"
echo "GITHUB_HEAD_REF=${GITHUB_HEAD_REF}"
echo "GITHUB_REPOSITORY=${GITHUB_REPOSITORY}"
echo "GITHUB_REF=${GITHUB_REF}"
echo "GITHUB_ACTOR=${GITHUB_ACTOR}"
echo "GITHUB_EVENT_NAME: ${GITHUB_EVENT_NAME}"
echo "GITHUB_HEAD_REPOSITORY: ${GITHUB_HEAD_REPOSITORY}"
echo "GITHUB_HEAD_REF: ${GITHUB_HEAD_REF}"
echo "GITHUB_REPOSITORY: ${GITHUB_REPOSITORY}"
echo "GITHUB_REF: ${GITHUB_REF}"
echo "GITHUB_ACTOR: ${GITHUB_ACTOR}"
- name: Determine PR source branch and fork repository
id: vars
Expand All @@ -43,6 +43,9 @@ jobs:
else
echo "FORK_REPO=informatici/openhospital-core" >> $GITHUB_ENV
fi
- name: Log variables
run: |
echo "FORK_REPO: ${{ env.FORK_REPO }}"
echo "BRANCH_NAME: ${{ env.BRANCH_NAME }}"
Expand Down

0 comments on commit 8878703

Please sign in to comment.