release-github.yml 564 B

12345678910111213141516
  1. # SPDX-FileCopyrightText: 2019 yuzu Emulator Project
  2. # SPDX-License-Identifier: GPL-2.0-or-later
  3. steps:
  4. - template: ./release-download.yml
  5. - task: GitHubRelease@0
  6. displayName: 'GitHub Release'
  7. inputs:
  8. action: 'create'
  9. title: '$(ReleasePrefix) $(DisplayVersion)'
  10. assets: '$(Build.ArtifactStagingDirectory)/*'
  11. gitHubConnection: $(GitHubReleaseConnectionName)
  12. repositoryName: '$(Build.Repository.Name)'
  13. target: '$(Build.SourceVersion)'
  14. tagSource: manual
  15. tag: $(BuildName)-$(DisplayPrefix)-$(DisplayVersion)