We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a88205 commit e559aebCopy full SHA for e559aeb
.github/workflows/release-branch.yml
@@ -35,6 +35,10 @@ on:
35
description: 'Release branch to build & publish from'
36
required: true
37
type: string
38
+ uploadUrl:
39
+ description: 'Location to publish packages to'
40
+ required: false
41
+ default: "up-ap.nginx.com"
42
workflow_call:
43
inputs:
44
githubRelease:
@@ -61,6 +65,9 @@ on:
61
65
releaseBranch:
62
66
63
67
68
69
+ type: string
70
64
71
72
env:
73
NFPM_VERSION: 'v2.35.3'
@@ -314,7 +321,7 @@ jobs:
314
321
if: ${{ inputs.publishPackages == true }}
315
322
316
323
TOKEN: ${{ steps.idtoken.outputs.id_token }}
317
- UPLOAD_URL: ${{ secrets.UPLOAD_URL }}
324
+ UPLOAD_URL: ${{ inputs.uploadUrl }}
318
325
run: |
319
326
make release
320
327
0 commit comments