Compare commits
4
Commits
af13f054e4
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7e62c0162f | ||
|
|
329cc0e57a | ||
|
|
da6b8f70c5 | ||
|
|
a3c1bb075c |
@@ -114,7 +114,7 @@ jobs:
|
|||||||
image:
|
image:
|
||||||
# Builds the portal image and ships it through the same path every
|
# Builds the portal image and ships it through the same path every
|
||||||
# other service in orca-infra uses: push :latest + :sha-<sha> to
|
# other service in orca-infra uses: push :latest + :sha-<sha> to
|
||||||
# repo.meghsakha.com, then POST a github-style payload to the
|
# repo.breakpilot.com, then POST a github-style payload to the
|
||||||
# orca webhook so the master pulls and redeploys breakpilot-portal.
|
# orca webhook so the master pulls and redeploys breakpilot-portal.
|
||||||
#
|
#
|
||||||
# Webhook target (registered once on the master via
|
# Webhook target (registered once on the master via
|
||||||
@@ -128,15 +128,20 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: docker/login-action@v3
|
- uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: repo.meghsakha.com
|
registry: repo.breakpilot.com
|
||||||
username: ${{ secrets.REGISTRY_USER }}
|
username: ${{ secrets.REGISTRY_USER }}
|
||||||
password: ${{ secrets.REGISTRY_PASS }}
|
password: ${{ secrets.REGISTRY_PASS }}
|
||||||
- uses: docker/build-push-action@v6
|
- uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
push: true
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
repo.meghsakha.com/breakpilot/portal:latest
|
repo.breakpilot.com/breakpilot/portal:latest
|
||||||
repo.meghsakha.com/breakpilot/portal:sha-${{ github.sha }}
|
repo.breakpilot.com/breakpilot/portal:sha-${{ github.sha }}
|
||||||
|
- name: sign image (cosign)
|
||||||
|
run: |
|
||||||
|
{ command -v cosign >/dev/null 2>&1 || curl -sSfLo /usr/local/bin/cosign https://github.com/sigstore/cosign/releases/download/v2.4.3/cosign-linux-amd64 || wget -qO /usr/local/bin/cosign https://github.com/sigstore/cosign/releases/download/v2.4.3/cosign-linux-amd64; } || echo "::warning::cosign fetch failed"
|
||||||
|
chmod +x /usr/local/bin/cosign 2>/dev/null || true
|
||||||
|
cosign sign --yes --key env://COSIGN_KEY repo.breakpilot.com/breakpilot/portal:latest || echo "::warning::cosign failed"
|
||||||
- name: trigger orca redeploy
|
- name: trigger orca redeploy
|
||||||
# Signs the POST with HMAC-SHA256 over the JSON body using the
|
# Signs the POST with HMAC-SHA256 over the JSON body using the
|
||||||
# secret orca generated when the webhook was registered. Orca's
|
# secret orca generated when the webhook was registered. Orca's
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ jobs:
|
|||||||
|
|
||||||
- name: verify stage soak (>= 24h on this image)
|
- name: verify stage soak (>= 24h on this image)
|
||||||
run: |
|
run: |
|
||||||
IMG=registry.breakpilot.com/${{ github.event.repository.name }}:env-stage
|
IMG=repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}:env-stage
|
||||||
SOAK_SECONDS=$(orca image-age --env=stage --image $IMG)
|
SOAK_SECONDS=$(orca image-age --env=stage --image $IMG)
|
||||||
if [ "$SOAK_SECONDS" -lt 86400 ]; then
|
if [ "$SOAK_SECONDS" -lt 86400 ]; then
|
||||||
echo "Stage soak only $SOAK_SECONDS s, < 24h. Aborting."
|
echo "Stage soak only $SOAK_SECONDS s, < 24h. Aborting."
|
||||||
@@ -34,12 +34,12 @@ jobs:
|
|||||||
- name: re-tag image as semver + env-prod
|
- name: re-tag image as semver + env-prod
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: registry.breakpilot.com
|
registry: repo.breakpilot.com
|
||||||
username: ${{ secrets.REGISTRY_USER }}
|
username: ${{ secrets.REGISTRY_USER }}
|
||||||
password: ${{ secrets.REGISTRY_PASS }}
|
password: ${{ secrets.REGISTRY_PASS }}
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
IMG=registry.breakpilot.com/${{ github.event.repository.name }}
|
IMG=repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}
|
||||||
docker pull $IMG:env-stage
|
docker pull $IMG:env-stage
|
||||||
docker tag $IMG:env-stage $IMG:v${{ steps.v.outputs.version }}
|
docker tag $IMG:env-stage $IMG:v${{ steps.v.outputs.version }}
|
||||||
docker tag $IMG:env-stage $IMG:env-prod
|
docker tag $IMG:env-stage $IMG:env-prod
|
||||||
@@ -67,7 +67,7 @@ jobs:
|
|||||||
curl -X POST -H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
|
curl -X POST -H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d "$(jq -Rs '{tag_name:"v${{ steps.v.outputs.version }}", name:"v${{ steps.v.outputs.version }}", body:.}' < RELEASE_NOTES.md)" \
|
-d "$(jq -Rs '{tag_name:"v${{ steps.v.outputs.version }}", name:"v${{ steps.v.outputs.version }}", body:.}' < RELEASE_NOTES.md)" \
|
||||||
https://gitea.meghsakha.com/api/v1/repos/${{ github.repository }}/releases
|
https://git.breakpilot.com/api/v1/repos/${{ github.repository }}/releases
|
||||||
|
|
||||||
rollback-on-failure:
|
rollback-on-failure:
|
||||||
needs: promote
|
needs: promote
|
||||||
|
|||||||
Reference in New Issue
Block a user