We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d85caf commit 917b5e2Copy full SHA for 917b5e2
1 file changed
azure-pipelines.yml
@@ -37,3 +37,19 @@ steps:
37
continueOnError: true
38
artifact: target
39
displayName: "Archive alphartc gym"
40
+
41
+- script: tar -cvzf target.tar.gz target
42
+ displayName: 'Compress target'
43
44
+- task: GitHubRelease@0
45
+ inputs:
46
+ gitHubConnection: 'Pterosaur (1)'
47
+ repositoryName: '$(Build.Repository.Name)'
48
+ action: 'create'
49
+ tagSource: manual
50
+ tag: $(Build.BuildNumber)
51
+ title: target
52
+ assets: 'target.tar.gz'
53
+ changeLogCompareToRelease: 'lastFullRelease'
54
+ changeLogType: 'commitBased'
55
+ displayName: "Release target"
0 commit comments