Skip to content

Commit

Permalink
Fix artifact paths - there's probably a cleaner way..
Browse files Browse the repository at this point in the history
  • Loading branch information
yousseb authored Oct 23, 2023
1 parent 0e5a9e9 commit f078d0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ jobs:
working-directory: /
shell: 'bash'
run: |
tar -czf $GITHUB_WORKSPACE/environment.tar.gz $HOME/gtk $HOME/.new_local
tar -czf /Users/runner/work/environment.tar.gz $HOME/gtk $HOME/.new_local
- name: Upload Environment
uses: actions/upload-artifact@v3.1.3
with:
name: Environment
path: |
$GITHUB_WORKSPACE/environment.tar.gz
/Users/runner/work/environment.tar.gz
build-app:
name: Build Application
Expand All @@ -69,8 +69,8 @@ jobs:
working-directory: /
shell: 'bash'
run: |
tar -xzf $GITHUB_WORKSPACE/environment.tar.gz
rm -f $GITHUB_WORKSPACE/environment.tar.gz
tar -xzf /Users/runner/work/environment.tar.gz
rm -f /Users/runner/work/environment.tar.gz
- name: FIX gir
run: |
Expand Down

0 comments on commit f078d0c

Please sign in to comment.