We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f99d2b commit f37c20eCopy full SHA for f37c20e
.github/workflows/deploy-to-staging.yml
@@ -50,13 +50,15 @@ jobs:
50
run: |
51
COMMIT_SHA=$(jq -r '.[] | select(.name == "frontend") | .git_commit' /tmp/dev-env.json)
52
set -x
53
+ echo
54
TAG="running-staging-frontend"
55
if git rev-parse ${TAG} >/dev/null 2>&1; then
56
git tag -d ${TAG}
57
git push --delete origin ${TAG}
58
fi
59
git tag ${TAG} ${COMMIT_SHA}
- 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}
62
echo "Deployed frontend commit ${COMMIT_SHA}"
63
64
- name: Deploy backend
0 commit comments