2024-03-06 06:26:38 +01:00
|
|
|
# SPDX-FileCopyrightText: 2019 yuzu Emulator Project
|
2024-03-05 13:20:29 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- template: ./release-download.yml
|
|
|
|
- task: GitHubRelease@0
|
|
|
|
displayName: 'GitHub Release'
|
|
|
|
inputs:
|
|
|
|
action: 'create'
|
|
|
|
title: '$(ReleasePrefix) $(DisplayVersion)'
|
|
|
|
assets: '$(Build.ArtifactStagingDirectory)/*'
|
|
|
|
gitHubConnection: $(GitHubReleaseConnectionName)
|
|
|
|
repositoryName: '$(Build.Repository.Name)'
|
|
|
|
target: '$(Build.SourceVersion)'
|
|
|
|
tagSource: manual
|
|
|
|
tag: $(BuildName)-$(DisplayPrefix)-$(DisplayVersion)
|