@@ -469,54 +469,54 @@ jobs:
469
469
key : nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
470
470
if : ${{ needs.variables.outputs.binary_cache_sign_hit != 'true' }}
471
471
472
- azure-upload :
473
- if : ${{ ! cancelled() && ! failure() && ! contains(inputs.skip_step, 'azure-upload') }}
474
- name : Upload packages to Azure
475
- runs-on : ubuntu-22.04
476
- needs : [variables, binaries]
477
- permissions :
478
- id-token : write
479
- contents : read
480
- steps :
481
- - name : Checkout Repository
482
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
483
- with :
484
- ref : ${{ inputs.release_branch }}
472
+ # azure-upload:
473
+ # if: ${{ ! cancelled() && ! failure() && ! contains(inputs.skip_step, 'azure-upload') }}
474
+ # name: Upload packages to Azure
475
+ # runs-on: ubuntu-22.04
476
+ # needs: [variables, binaries]
477
+ # permissions:
478
+ # id-token: write
479
+ # contents: read
480
+ # steps:
481
+ # - name: Checkout Repository
482
+ # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
483
+ # with:
484
+ # ref: ${{ inputs.release_branch }}
485
485
486
- - name : Fetch Cached Tarball Artifacts
487
- uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
488
- with :
489
- key : nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
490
- path : ${{ github.workspace }}/tarballs
491
- fail-on-cache-miss : true
486
+ # - name: Fetch Cached Tarball Artifacts
487
+ # uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
488
+ # with:
489
+ # key: nginx-ingress-release-${{ needs.variables.outputs.go_code_md5 }}
490
+ # path: ${{ github.workspace }}/tarballs
491
+ # fail-on-cache-miss: true
492
492
493
- - name : Azure login
494
- uses : azure/login@a457da9ea143d694b1b9c7c869ebb04ebe844ef5 # v2.3.0
495
- with :
496
- client-id : ${{ secrets.AZURE_CLIENT_ID }}
497
- tenant-id : ${{ secrets.AZURE_TENANT_ID }}
498
- subscription-id : ${{ secrets.AZURE_SUBSCRIPTION_ID }}
493
+ # - name: Azure login
494
+ # uses: azure/login@a457da9ea143d694b1b9c7c869ebb04ebe844ef5 # v2.3.0
495
+ # with:
496
+ # client-id: ${{ secrets.AZURE_CLIENT_ID }}
497
+ # tenant-id: ${{ secrets.AZURE_TENANT_ID }}
498
+ # subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
499
499
500
- - name : Azure Upload Release Packages
501
- uses : azure/CLI@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
502
- with :
503
- inlineScript : |
504
- for i in $(find tarballs -type f); do
505
- echo -n "Uploading ${i} to kubernetes-ingress/v${{ inputs.nic_version }}/${i##*/} ... "
506
- if ${{ ! inputs.dry_run}}; then
507
- az storage blob upload --auth-mode=login -f "$i" -c ${{ secrets.AZURE_BUCKET_NAME }} \
508
- --account-name ${{ secrets.AZURE_STORAGE_ACCOUNT }} --overwrite -n kubernetes-ingress/v${{ inputs.nic_version }}/${i##*/}
509
- echo "done"
510
- else
511
- echo "skipped, dry_run."
512
- fi
513
- done
500
+ # - name: Azure Upload Release Packages
501
+ # uses: azure/CLI@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
502
+ # with:
503
+ # inlineScript: |
504
+ # for i in $(find tarballs -type f); do
505
+ # echo -n "Uploading ${i} to kubernetes-ingress/v${{ inputs.nic_version }}/${i##*/} ... "
506
+ # if ${{ ! inputs.dry_run}}; then
507
+ # az storage blob upload --auth-mode=login -f "$i" -c ${{ secrets.AZURE_BUCKET_NAME }} \
508
+ # --account-name ${{ secrets.AZURE_STORAGE_ACCOUNT }} --overwrite -n kubernetes-ingress/v${{ inputs.nic_version }}/${i##*/}
509
+ # echo "done"
510
+ # else
511
+ # echo "skipped, dry_run."
512
+ # fi
513
+ # done
514
514
515
515
github-release :
516
516
if : ${{ ! cancelled() && ! failure() && ! contains(inputs.skip_step, 'github-release') }}
517
517
name : Publish release to GitHub
518
518
runs-on : ubuntu-22.04
519
- needs : [variables, binaries, release-oss, release-plus-gcr-nginx, azure-upload ]
519
+ needs : [variables, binaries, release-oss, release-plus-gcr-nginx]
520
520
permissions :
521
521
contents : write # to modify the release
522
522
issues : write # to close milestone
0 commit comments