Skip to content

Commit

Permalink
ci: attach all artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongnemo committed Mar 10, 2024
1 parent b051c5a commit 418911a
Showing 1 changed file with 32 additions and 4 deletions.
36 changes: 32 additions & 4 deletions .github/workflows/cli-build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,38 @@ jobs:
cd builtLinuxArm64
tar czfv ../../SonicLair.Cli-${{steps.short.outputs.short}}-linux-arm64.tar.gz SonicLair.Cli
- name: Upload release bundle as artifact
- name: Attach Win x64 artifacts
uses: actions/upload-artifact@v3
with:
path: |
SonicLair.Cli-${{steps.short.outputs.short}}-win-x64.zip
retention-days: 60
name: SonicLair.Cli-${{steps.short.outputs.short}}
path: SonicLair.Cli-${{steps.short.outputs.short}}-win-x64.zip

- name: Attach Win x86 artifacts
uses: actions/upload-artifact@v3
with:
name: SonicLair.Cli-${{steps.short.outputs.short}}
path: SonicLair.Cli-${{steps.short.outputs.short}}-win-x86.zip

- name: Attach Mac OS x64 artifacts
uses: actions/upload-artifact@v3
with:
name: SonicLair.Cli-${{steps.short.outputs.short}}
path: SonicLair.Cli-${{steps.short.outputs.short}}-macos-x64.zip

- name: Attach Linux x64 artifacts
uses: actions/upload-artifact@v3
with:
name: SonicLair.Cli-${{steps.short.outputs.short}}
path: SonicLair.Cli-${{steps.short.outputs.short}}-linux-x64.tar.gz

- name: Attach Linux arm artifacts
uses: actions/upload-artifact@v3
with:
name: SonicLair.Cli-${{steps.short.outputs.short}}
path: SonicLair.Cli-${{steps.short.outputs.short}}-linux-arm.tar.gz

- name: Attach Linux arm64 artifacts
uses: actions/upload-artifact@v3
with:
name: SonicLair.Cli-${{steps.short.outputs.short}}
path: SonicLair.Cli-${{steps.short.outputs.short}}-linux-arm64.tar.gz

0 comments on commit 418911a

Please sign in to comment.