Skip to content

Commit

Permalink
Merge branch 'main' into clean-up_script
Browse files Browse the repository at this point in the history
  • Loading branch information
j-zimnowoda authored Nov 13, 2024
2 parents 4e30c47 + 74a1705 commit 18716b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ spec:
# Reading gitea credentials
GITEA_USERNAME=$(cat /etc/gitea-credentials/username)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password | jq -s -R -r @uri )
# Getting the full repository url
export fullRepoUrl=$(params["repoUrl"])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
git config --global --add safe.directory '*'
# Reading gitea credentials
GITEA_USERNAME=$(cat /etc/gitea-credentials/username)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password | jq -s -R -r @uri )
# Parsing the repo url
export fullRepoUrl=$(params["repoUrl"])
Expand Down
2 changes: 1 addition & 1 deletion charts/otomi-pipelines/templates/tekton-otomi-task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
git config --global --add safe.directory '*'
# Reading gitea credentials
GITEA_USERNAME=$(cat /etc/gitea-credentials/username)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password)
GITEA_PASSWORD=$(cat /etc/gitea-credentials/password | jq -s -R -r @uri )
# Parsing the repo url
export fullRepoUrl=$(params["repoUrl"])
Expand Down

0 comments on commit 18716b1

Please sign in to comment.