Skip to content

Commit

Permalink
Hopefully set up release asset steps
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed Jun 15, 2020
1 parent a144b7d commit 6827a72
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Upload .streamDeckPlugin
uses: actions/upload-artifact@v2
with:
name: ${{matrix.build-type}}-com.fredemmott.micmutetoggle.streamDeckPlugin
name: ${{matrix.build-type}}
path: com.fredemmott.micmutetoggle.streamDeckPlugin
strategy:
matrix:
Expand Down Expand Up @@ -77,6 +77,16 @@ jobs:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ${{runner.temp}}/final/obs-streaming-remote-win64.zip
asset_name: com.fredemmott.micemutetoggle.sdPlugin
asset_path: ${{runner.temp}}/artifacts/Release/com.fredemmott.micmutetoggle.streamDeckPlugin
asset_name: com.fredemmott.micmutetoggle.streamDeckPlugin
asset_content_type: application/octet-stream
- name: Attach Debug Build
if: steps.ref.outputs.is-release == 'true'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ${{runner.temp}}/artifacts/Debug/com.fredemmott.micmutetoggle.streamDeckPlugin
asset_name: debug-com.fredemmott.micmutetoggle.streamDeckPlugin
asset_content_type: application/octet-stream

0 comments on commit 6827a72

Please sign in to comment.