From cb17ac72527f0a9aed6b2f1ddc6a7f691ec8e2bc Mon Sep 17 00:00:00 2001 From: K0IN Date: Sun, 23 Jun 2024 19:32:00 +0200 Subject: [PATCH] Update build-release-files.yml --- .github/workflows/build-release-files.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-release-files.yml b/.github/workflows/build-release-files.yml index 5e7ce9e..229590e 100644 --- a/.github/workflows/build-release-files.yml +++ b/.github/workflows/build-release-files.yml @@ -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 @@ -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