Skip to content

Commit

Permalink
Update build-release-files.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
K0IN committed Jun 23, 2024
1 parent bb7297a commit cb17ac7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-release-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
node-version: "latest"

- name: Create directories
run: mkdir -p /out/notify
run: mkdir -p ~/out/notify

- name: Compile Deno and copy to output
run: deno compile --allow-net --allow-read --allow-write --allow-env --unstable --output /out/notify/notify ./main.ts
run: deno compile --allow-net --allow-read --allow-write --allow-env --unstable --output ~/out/notify/notify ./main.ts
working-directory: ./app/backend

- name: Install frontend dependencies
Expand All @@ -38,10 +38,10 @@ jobs:
working-directory: ./app/frontend

- name: Copy frontend files
run: cp -r ./app/frontend/build/* /out/notify/static-files
run: cp -r ./app/frontend/build/* ~/out/notify/static-files

- name: Archive files
run: tar -czf /out/notify/notify.tar.gz -C /out/notify .
run: tar -czf ~/out/notify/notify.tar.gz -C /out/notify .

- name: Add artifact
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit cb17ac7

Please sign in to comment.