From 7f40c4d123ce3b420bc3a3df47bffb986c18a94f Mon Sep 17 00:00:00 2001 From: h1dden-da3m0n <33120068+h1dden-da3m0n@users.noreply.github.com> Date: Sun, 11 Oct 2020 15:14:17 +0200 Subject: [PATCH] update GitHubRelease task * update from v0 to v1 * hopefully fix assets path --- .ci/azure-pipelines.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index 31e00a6d..309f40a3 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -78,15 +78,15 @@ jobs: env: BINTRAY_KEY: $(bintray_key) - - task: GithubRelease@0 + - task: GitHubRelease@1 displayName: 'GitHub Upload' inputs: gitHubConnection: Jellyfin Release Download repositoryName: jellyfin/jellyfin-apiclient-java assets: | - $(Build.SourcesDirectory)/**/distributions/*-$(JELLYFIN_VERSION).zip - $(Build.SourcesDirectory)/**/libs/*-$(JELLYFIN_VERSION).jar - $(Build.SourcesDirectory)/**/libs/*-$(JELLYFIN_VERSION)-sources.jar + $(Build.ArtifactStagingDirectory)/**/distributions/*-$(JELLYFIN_VERSION).zip + $(Build.ArtifactStagingDirectory)/**/libs/*-$(JELLYFIN_VERSION).jar + $(Build.ArtifactStagingDirectory)/**/libs/*-$(JELLYFIN_VERSION)-sources.jar action: 'edit' assetUploadMode: 'replace' tag: '$(JELLYFIN_VERSION)'