Skip to content

Commit

Permalink
Corrects path to diff files
Browse files Browse the repository at this point in the history
- The original path is one that needs to be used when an action is
  running inside of a container but wants to interact with the github
  workspace. We have changed it to the one used by actions that are
  running directly on the vm
  • Loading branch information
ForestEckhardt committed Dec 17, 2024
1 parent d4320d9 commit c6b8467
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions stack/.github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ jobs:
echo "packages_removed=false" >> "$GITHUB_OUTPUT"
fi
env:
BUILD_REMOVED: "/github/workspace/${{ env.BUILD_DIFF_REMOVED_FILENAME }}"
RUN_REMOVED: "/github/workspace/${{ env.RUN_DIFF_REMOVED_FILENAME }}"
BUILD_REMOVED: "${{ github.workspace }}/${{ env.BUILD_DIFF_REMOVED_FILENAME }}"
RUN_REMOVED: "${{ github.workspace }}/${{ env.RUN_DIFF_REMOVED_FILENAME }}"

run_if_packages_removed_with_force:
name: Run If Packages Removed With Force
Expand Down Expand Up @@ -331,10 +331,10 @@ jobs:
fi
env:
BUILD_ADDED: "/github/workspace/${{ env.BUILD_DIFF_ADDED_FILENAME }}"
BUILD_MODIFIED: "/github/workspace/${{ env.BUILD_DIFF_MODIFIED_FILENAME }}"
RUN_ADDED: "/github/workspace/${{ env.RUN_DIFF_ADDED_FILENAME }}"
RUN_MODIFIED: "/github/workspace/${{ env.RUN_DIFF_MODIFIED_FILENAME }}"
BUILD_ADDED: "${{ github.workspace }}/${{ env.BUILD_DIFF_ADDED_FILENAME }}"
BUILD_MODIFIED: "${{ github.workspace }}/${{ env.BUILD_DIFF_MODIFIED_FILENAME }}"
RUN_ADDED: "${{ github.workspace }}/${{ env.RUN_DIFF_ADDED_FILENAME }}"
RUN_MODIFIED: "${{ github.workspace }}/${{ env.RUN_DIFF_MODIFIED_FILENAME }}"

run_if_packages_changed:
name: Run If Packages Changed
Expand Down

0 comments on commit c6b8467

Please sign in to comment.