Skip to content

Commit

Permalink
Merge pull request #6 from jellyfin/publish
Browse files Browse the repository at this point in the history
Fix wildcard issue
  • Loading branch information
anthonylavado authored Apr 16, 2020
2 parents c0e622d + 6339509 commit a8f2d0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .ci/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ jobs:
inputs:
targetType: 'inline'
script: 'mv *.appxupload jellyfin-uwp-${TAG}.appxupload'
workingDirectory: '$(System.ArtifactsDirectory)'
workingDirectory: '$(System.ArtifactsDirectory)/AppxPackages'

- task: GithubRelease@0
displayName: 'GitHub Upload'
inputs:
gitHubConnection: Jellyfin Release Download
repositoryName: jellyfin/jellyfin-uwp
assets: '$(System.ArtifactsDirectory)/*.appxupload'
assets: '$(System.ArtifactsDirectory)/**/*.appxupload'
action: 'edit'
assetUploadMode: 'replace'
tag: '$(TAG)'
Expand All @@ -91,7 +91,7 @@ jobs:
inputs:
sshEndpoint: repository
sourceFolder: '$(System.ArtifactsDirectory)'
contents: '*.appxupload'
contents: '**/*.appxupload'
targetFolder: '/srv/repository/releases/client/uwp/versions/$(TAG)'

- task: SSH@0
Expand Down

0 comments on commit a8f2d0b

Please sign in to comment.