Skip to content

Commit

Permalink
chore: fix PAC reference to -pac.yaml specific files (#754)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrangelramos authored Mar 11, 2024
1 parent 4241da6 commit 17ac97c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/pipelines/tekton/templates.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ var (

taskBasePath = "https://raw.githubusercontent.com/" +
FuncRepoRef + "/" + FuncRepoBranchRef + "/pkg/pipelines/resources/tekton/task/"
BuildpackTaskURL = taskBasePath + "func-buildpacks/0.2/func-buildpacks.yaml"
S2ITaskURL = taskBasePath + "func-s2i/0.1/func-s2i.yaml"
DeployTaskURL = taskBasePath + "func-deploy/0.1/func-deploy.yaml"
BuildpackTaskURL = taskBasePath + "func-buildpacks/0.2/func-buildpacks-pac.yaml"
S2ITaskURL = taskBasePath + "func-s2i/0.1/func-s2i-pac.yaml"
DeployTaskURL = taskBasePath + "func-deploy/0.1/func-deploy-pac.yaml"
)

type templateData struct {
Expand Down

0 comments on commit 17ac97c

Please sign in to comment.