mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-29 14:18:49 +03:00
Add GitHub release to azure pipeline
This commit is contained in:
parent
f4c688767a
commit
21ba39fd49
2 changed files with 33 additions and 5 deletions
|
@ -1,14 +1,41 @@
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- bash: |
|
|
||||||
./.ci/install.sh
|
|
||||||
export PATH=/usr/local/bin:${PATH}
|
|
||||||
- bash: |
|
- bash: |
|
||||||
export CXX=${CXX_COMPILER}
|
export CXX=${CXX_COMPILER}
|
||||||
export CC=${C_COMPILER}
|
export CC=${C_COMPILER}
|
||||||
# Use TRAVIS_TAG if defined, or the short commit SHA otherwise
|
# Use TRAVIS_TAG if defined, or the short commit SHA otherwise
|
||||||
export VERSION=${TRAVIS_TAG:-$(git rev-parse --short HEAD)}
|
export VERSION=${TRAVIS_TAG:-$(git rev-parse --short HEAD)}
|
||||||
- bash: |
|
|
||||||
|
./.ci/install.sh
|
||||||
|
export PATH=/usr/local/bin:${PATH}
|
||||||
|
|
||||||
./.ci/script.sh
|
./.ci/script.sh
|
||||||
sed -i -e "s/VERSION_NAME_VALUE/${VERSION}/g" ./.ci/bintray-release.json || true
|
sed -i -e "s/VERSION_NAME_VALUE/${VERSION}/g" ./.ci/bintray-release.json || true
|
||||||
cp ./.ci/bintray-release.json .
|
cp ./.ci/bintray-release.json .
|
||||||
|
- task: CopyFiles@2
|
||||||
|
inputs:
|
||||||
|
#sourceFolder: # Optional
|
||||||
|
contents: |
|
||||||
|
'**/*.dmg'
|
||||||
|
'**/*.AppImage'
|
||||||
|
targetFolder: $(Build.ArtifactStagingDirectory)
|
||||||
|
#cleanTargetFolder: false # Optional
|
||||||
|
#overWrite: false # Optional
|
||||||
|
#flattenFolders: false # Optional
|
||||||
|
- task: GitHubRelease@0
|
||||||
|
inputs:
|
||||||
|
gitHubConnection: Nheko-Reborn
|
||||||
|
repositoryName: '$(Build.Repository.Name)'
|
||||||
|
action: 'create' # Options: create, edit, delete
|
||||||
|
target: '$(Build.SourceVersion)' # Required when action == Create || Action == Edit
|
||||||
|
tagSource: 'auto' # Required when action == Create# Options: auto, manual
|
||||||
|
#tag: # Required when action == Edit || Action == Delete || TagSource == Manual
|
||||||
|
#title: # Optional
|
||||||
|
releaseNotesSource: 'file' # Optional. Options: file, input
|
||||||
|
releaseNotesFile: CHANGELOG.md # Optional
|
||||||
|
#releaseNotes: # Optional
|
||||||
|
assets: '$(Build.ArtifactStagingDirectory)/*' # Optional
|
||||||
|
assetUploadMode: 'delete' # Optional. Options: delete, replace
|
||||||
|
#isDraft: false # Optional
|
||||||
|
isPreRelease: true # Optional
|
||||||
|
addChangeLog: true # Optional
|
|
@ -22,6 +22,7 @@ stages:
|
||||||
C_COMPILER: 'clang-6.0'
|
C_COMPILER: 'clang-6.0'
|
||||||
QT_VERSION: '5.11.1'
|
QT_VERSION: '5.11.1'
|
||||||
QT_PKG: '511'
|
QT_PKG: '511'
|
||||||
|
DEPLOYMENT: '1'
|
||||||
USE_BUNDLED_BOOST: '1'
|
USE_BUNDLED_BOOST: '1'
|
||||||
USE_BUNDLED_CMARK: '1'
|
USE_BUNDLED_CMARK: '1'
|
||||||
USE_BUNDLED_JSON: '1'
|
USE_BUNDLED_JSON: '1'
|
||||||
|
|
Loading…
Reference in a new issue