Skip to content

Commit

Permalink
Removed GITHUB_WORKSPACE from drive action
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianTrommer committed Nov 5, 2024
1 parent 19853de commit e6d172c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/drive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
archive_format: 'zip',
});
let fs = require('fs');
fs.writeFileSync('${process.env.GITHUB_WORKSPACE}/artifact.zip', Buffer.from(download.data));
fs.writeFileSync('artifact.zip', Buffer.from(download.data));
- name: Unzip artifact
run: |
Expand All @@ -55,7 +55,7 @@ jobs:
with:
script: |
let fs = require('fs');
let data = JSON.parse(fs.readFileSync('${process.env.GITHUB_WORKSPACE}/artifacts.json'));
let data = JSON.parse(fs.readFileSync('artifacts.json'));
return data;
- name: Run docker-compose
Expand Down

0 comments on commit e6d172c

Please sign in to comment.