Skip to content

Commit f37c20e

Browse files
committed
OPS-12 more debug
1 parent 8f99d2b commit f37c20e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy-to-staging.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,15 @@ jobs:
5050
run: |
5151
COMMIT_SHA=$(jq -r '.[] | select(.name == "frontend") | .git_commit' /tmp/dev-env.json)
5252
set -x
53+
echo
5354
TAG="running-staging-frontend"
5455
if git rev-parse ${TAG} >/dev/null 2>&1; then
5556
git tag -d ${TAG}
5657
git push --delete origin ${TAG}
5758
fi
5859
git tag ${TAG} ${COMMIT_SHA}
59-
git push origin ${TAG}
60+
git push https://x-access-token:${GH_TOKEN}@github.com/kosli-dev/jira-integration-example.git ${TAG}
61+
#git push origin ${TAG}
6062
echo "Deployed frontend commit ${COMMIT_SHA}"
6163
6264
- name: Deploy backend

0 commit comments

Comments
 (0)