You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/actions/azdo-build/action.yml
+65-15Lines changed: 65 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,6 @@ name: 'Build via AzDO'
2
2
description: Run a build pipeline via Azure DevOps and download the build artifact
3
3
4
4
inputs:
5
-
artifact-name:
6
-
description: Output artifact name
7
-
default: azdo-artifact
8
-
type: string
9
-
10
5
azdo-org:
11
6
description: AzDO org URL
12
7
required: true
@@ -37,11 +32,6 @@ inputs:
37
32
required: true
38
33
type: string
39
34
40
-
download-artifact-name:
41
-
description: Name of AzDO artifact to download
42
-
required: true
43
-
type: string
44
-
45
35
pipeline-variable:
46
36
description: Pipeline variable (multiline)
47
37
required: true
@@ -209,11 +199,11 @@ runs:
209
199
echo "Artifact downloaded successfully"
210
200
shell: bash
211
201
212
-
- name: Upload artifact
213
-
uses: actions/upload-artifact@v6
214
-
with:
215
-
name: ${{ inputs.artifact-name }}
216
-
path: ./artifact-download/
202
+
#- name: Upload artifact
203
+
# uses: actions/upload-artifact@v6
204
+
# with:
205
+
# name: ${{ inputs.artifact-name }}
206
+
# path: ./artifact-download/
217
207
218
208
- id: get-version
219
209
name: Get version
@@ -225,3 +215,63 @@ runs:
225
215
if [[ "$VERSION" == *-* ]]; then echo version-type=prerelease | tee --append $GITHUB_OUTPUT; else echo version-type=production | tee --append $GITHUB_OUTPUT; fi
echo version=$VERSION | tee --append $GITHUB_OUTPUT
86
+
87
+
if [[ "$VERSION" == *-* ]]; then echo version-type=prerelease | tee --append $GITHUB_OUTPUT; else echo version-type=production | tee --append $GITHUB_OUTPUT; fi
0 commit comments