Skip to content

Commit

Permalink
Moved to tmp dir instead
Browse files Browse the repository at this point in the history
  • Loading branch information
Donkie committed Dec 29, 2023
1 parent dec34df commit dc84c8c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,11 @@ jobs:
uses: actions/download-artifact@v3
with:
name: spoolman
path: /spoolman
path: /tmp/spoolman

- name: Generate release info
run: |
cd /spoolman
ls -R
cd /tmp/spoolman
echo '{
"project_name": "Spoolman",
"project_owner": "Donkie",
Expand All @@ -371,7 +370,7 @@ jobs:
- name: Zip
run: |
cd /spoolman
cd /tmp/spoolman
zip -r spoolman.zip *
- name: Create release and upload build
Expand All @@ -381,7 +380,7 @@ jobs:
draft: true
name: ${{ github.ref_name }}
tag_name: ${{ github.ref_name }}
files: /spoolman/spoolman.zip
files: /tmp/spoolman/spoolman.zip
token: ${{ secrets.GITHUB_TOKEN }}
body: "⚠️ TODO ⚠️"

0 comments on commit dc84c8c

Please sign in to comment.