Skip to content

Commit

Permalink
Fix artifact uploads (I let Copilot write this one)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Dec 6, 2023
1 parent a036ae4 commit 1214fe1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,15 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# JSON array to newline-delimited string
- name: Parse artifact paths
id: parse-artifact-paths
shell: bash
run: |
echo "::set-output name=artifactPaths::$(echo '${{ steps.build.outputs.artifactPaths }}' | jq -r '.[]')"
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: moonlight-installer
path: ${{ steps.build.outputs.artifactPaths }}
path: ${{ steps.parse-artifact-paths.outputs.artifactPaths }}

0 comments on commit 1214fe1

Please sign in to comment.