Browse Source

Disable the GitHub release creation task for AppVeyor, until it's fixed

timvisee 6 years ago
parent
commit
a4a5dd156e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      appveyor.yml

+ 2 - 1
appveyor.yml

@@ -73,7 +73,8 @@ build_script:
   - cd ..\..\..\
 
   # Create the release, upload the binaries
-  - ps: 'try { .\github-release.exe release --token $env:GITHUB_TOKEN --owner timvisee --repo ffsend --tag $env:APPVEYOR_REPO_TAG_NAME --title "ffsend $env:APPVEYOR_REPO_TAG_NAME" 2> $null } catch { "Creating GitHub release failed, might already exist. Ignoring" }'
+  # TODO: fix the release task
+  # - ps: 'try { .\github-release.exe release --token $env:GITHUB_TOKEN --owner timvisee --repo ffsend --tag $env:APPVEYOR_REPO_TAG_NAME --title "ffsend $env:APPVEYOR_REPO_TAG_NAME" 2> $null } catch { "Creating GitHub release failed, might already exist. Ignoring" }'
   - ps: .\github-release.exe upload --token $env:GITHUB_TOKEN --owner timvisee --repo ffsend --tag $env:APPVEYOR_REPO_TAG_NAME --file .\ffsend-$env:TARGET.exe --name ffsend-$env:APPVEYOR_REPO_TAG_NAME-windows-x64.exe
   - ps: .\github-release.exe upload --token $env:GITHUB_TOKEN --owner timvisee --repo ffsend --tag $env:APPVEYOR_REPO_TAG_NAME --file .\ffsend-$env:TARGET-static.exe --name ffsend-$env:APPVEYOR_REPO_TAG_NAME-windows-x64-static.exe
   - ps: .\github-release.exe upload --token $env:GITHUB_TOKEN --owner timvisee --repo ffsend --tag $env:APPVEYOR_REPO_TAG_NAME --file (Get-Item .\ffsend.*.nupkg).FullName --name ffsend-$env:APPVEYOR_REPO_TAG_NAME.nupkg