Skip to content

Commit

Permalink
absolute joke
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Apr 16, 2024
1 parent 530bda6 commit 26b6a7b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
uses: actions/[email protected]
with:
name: "Refresher_for_Linux_x64.zip"
name: "Refresher_for_Linux_x64"
path: "Refresher/bin/Release/net8.0/linux-x64/publish/"
if-no-files-found: error
retention-days: 1
Expand All @@ -52,7 +52,7 @@ jobs:
if: matrix.os == 'windows-latest'
uses: actions/[email protected]
with:
name: "Refresher_for_Windows_x64.zip"
name: "Refresher_for_Windows_x64"
path: "Refresher/bin/Release/net8.0-windows/win-x64/publish/"
if-no-files-found: error
retention-days: 1
Expand All @@ -64,13 +64,14 @@ jobs:
- name: Download artifacts
id: download
uses: actions/[email protected]
- shell: bash

- name: Create zip files
run: |
ls -lAh *
echo "${{steps.download.outputs.download-path}}"
ls -lAh ${{steps.download.outputs.download-path}}
find -name "*.zip" -type f
cd ${{steps.download.outputs.download-path}}/Refresher_for_Windows_x64
zip -r "${{steps.download.outputs.download-path}}/Refresh_for_Windows_x64.zip" .
cd ${{steps.download.outputs.download-path}}/Refresher_for_Linux_x64
zip -r "${{steps.download.outputs.download-path}}/Refresh_for_Linux_x64.zip" .
- uses: marvinpinto/action-automatic-releases@latest
name: "Create release"
Expand All @@ -79,5 +80,4 @@ jobs:
prerelease: false
draft: true
files: |
${{steps.download.outputs.download-path}}/Refresher_for_Windows_x64.zip
${{steps.download.outputs.download-path}}/Refresher_for_Linux_x64.zip
*.zip

0 comments on commit 26b6a7b

Please sign in to comment.