Skip to content

Commit

Permalink
make download path for release artifacts match ls -lR path
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed Jun 15, 2020
1 parent 5165ef5 commit a144b7d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: ${{matrix.build-type}}-com.fredemmott.micmutetoggle.streamDeckPlugin
path: ${{runner.temp}}/com.fredemmott.micmutetoggle.streamDeckPlugin
path: com.fredemmott.micmutetoggle.streamDeckPlugin
strategy:
matrix:
os: [windows]
Expand All @@ -58,7 +58,8 @@ jobs:
with:
path: ${{runner.temp}}/artifacts
- name: Display downloaded files
run: ls -R artifacts
run: ls -R
working-directory: ${{runner.temp}}/artifacts
- name: Create Draft Release
id: create-release
if: steps.ref.outputs.is-release == 'true'
Expand All @@ -69,13 +70,13 @@ jobs:
release_name: Release ${{ steps.ref.outputs.tag }}
tag_name: ${{steps.ref.outputs.tag}}
draft: true
- name: Attach OBS/Release/Win64
- name: Attach Release 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}}/final/obs-streaming-remote-win64.zip
asset_name: obs-streaming-remote-win64.zip
asset_content_type: application/zip
asset_name: com.fredemmott.micemutetoggle.sdPlugin
asset_content_type: application/octet-stream

0 comments on commit a144b7d

Please sign in to comment.