Skip to content

Commit

Permalink
Merge branch 'main' into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Klein committed Aug 13, 2021
2 parents 29c3cf5 + f2d9235 commit e53b9a7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .azure-devops/azure-pipelines.devel-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ steps:
yarn
displayName: 'Install NPM Packages'
- script: |
GH_TOKEN=$(GH_TOKEN) yarn dist -m -w -l
GH_TOKEN=$(GH_TOKEN) yarn compile
19 changes: 14 additions & 5 deletions .azure-devops/azure-pipelines.release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,27 +32,36 @@ steps:
yarn
displayName: 'Install NPM Packages'
- script: |
GH_TOKEN=$(GH_TOKEN) yarn compile
GH_TOKEN=$(GH_TOKEN) yarn dist -m -w -l
displayName: Build Installation Packages for all platforms
- script: |
ls
echo "$BUILD_SOURCEDIRECTORY"
echo "$BUILD_ARTIFACTSTAGINGDIRECTORY"
- task: CopyFiles@2
inputs:
SourceFolder: '$(agent.builddirectory)/'
SourceFolder: '$(Build.SourcesDirectory)/dist/'
Contents: '*.dmg'
TargetFolder: '$(build.artifactstagingdirectory)'
displayName: Copy Mac Setup files
- task: CopyFiles@2
inputs:
SourceFolder: '$(agent.builddirectory)/'
SourceFolder: '$(Build.SourcesDirectory)/dist/'
Contents: '*.exe'
TargetFolder: '$(build.artifactstagingdirectory)'
displayName: Copy Windows Setup Files
- task: CopyFiles@2
inputs:
SourceFolder: '$(agent.builddirectory)/'
SourceFolder: '$(Build.SourcesDirectory)/dist/'
Contents: '*.snap'
TargetFolder: '$(build.artifactstagingdirectory)'
displayName: Copy Linux Snap Package
- task: GitHubRelease@1
inputs:
gitHubConnection: 'github.com_Hobart2967'
repositoryName: '$(Build.Repository.Name)'
action: 'edit'
target: '$(Build.SourceVersion)'
tag: '$(Build.SourceBranchName)'
addChangeLog: false
addChangeLog: false
displayName: Update Github Release

0 comments on commit e53b9a7

Please sign in to comment.