Skip to content

Commit

Permalink
Fix artifact path resolution for workspace upload
Browse files Browse the repository at this point in the history
- Update upload-artifact paths to use `${{ env.HOME }}` ensuring that `$HOME/tooling` and `$HOME/test_dependencies` are correctly resolved.
- Ensure consistency between artifact upload and download paths for reliable workspace restoration.
- Retain prior improvements for authentication, caching, and overall workspace management.

This change fixes the artifact upload failure due to literal `$HOME` usage.
  • Loading branch information
zackkatz committed Feb 17, 2025
1 parent 5732c8a commit cf4c9c3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,12 @@ jobs:
with:
name: workspace
path: |
$HOME/tooling
$HOME/test_dependencies
${{ env.HOME }}/tooling
${{ env.HOME }}/test_dependencies
if-no-files-found: warn
compression-level: 6
overwrite: false
include-hidden-files: false

run_php_74_unit_tests:
runs-on: ubuntu-latest
Expand Down

0 comments on commit cf4c9c3

Please sign in to comment.