Skip to content

Commit

Permalink
fix gh-workflow-ci.sh script
Browse files Browse the repository at this point in the history
fix ordering when passing the arguments for
create_pac_github_app_secret.
  • Loading branch information
chmouel committed Jan 8, 2024
1 parent 6bdc43d commit 0bd8115
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/gh-workflow-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
set -eufo pipefail

create_pac_github_app_secret() {
local application_id="${1}"
local app_private_key="${2}"
local app_private_key="${1}"
local application_id="${2}"
local webhook_secret="${3}"
kubectl delete secret -n pipelines-as-code pipelines-as-code-secret || true
kubectl -n pipelines-as-code create secret generic pipelines-as-code-secret \
Expand Down

0 comments on commit 0bd8115

Please sign in to comment.