Skip to content

CI: remove release workflow call on all v3 pipelines #1071

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: v3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -306,23 +306,3 @@ jobs:
- name: Push load test result
if: ${{ success() && github.ref_name == 'v3'}}
run: git push 'https://github-actions:${{ secrets.GITHUB_TOKEN }}@github.com/nginx/agent.git' benchmark-results:benchmark-results

publish-packages:
name: Publish NGINX Agent v3 packages
if: ${{ github.ref_name == 'v3' &&
!github.event.pull_request.head.repo.fork }}
needs: [ lint, unit-test, performance-tests,
load-tests, official-oss-image-integration-tests,
official-plus-image-integration-tests,
race-condition-test, integration-tests ]
uses: ./.github/workflows/release-branch.yml
secrets: inherit
permissions:
id-token: write
contents: read
with:
packageVersion: "3.0.0"
packageBuildNo: "${{ github.run_number }}"
uploadAzure: true
publishPackages: true
releaseBranch: "v3"
29 changes: 0 additions & 29 deletions .github/workflows/release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,35 +39,6 @@ on:
description: 'Location to publish packages to'
required: false
default: "https://up-ap.nginx.com"
workflow_call:
inputs:
githubRelease:
type: boolean
default: false
packageVersion:
type: string
default: "3.0.0"
packageBuildNo:
type: string
default: "1"
uploadAzure:
type: boolean
default: true
publishPackages:
type: boolean
default: true
tagRelease:
type: boolean
default: false
createPullRequest:
type: boolean
default: false
releaseBranch:
type: string
required: true
uploadUrl:
type: string
default: "https://up-ap.nginx.com"

env:
NFPM_VERSION: 'v2.35.3'
Expand Down