PREPROD - Build & deploy all studios v3 #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PREPROD - Build & deploy all studios v3 | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'sanityv3/**/*' | |
- './FeatureFlags.js' | |
- '!./README.md' | |
- '!./.env.development.template' | |
permissions: | |
id-token: write | |
packages: write | |
jobs: | |
update-radix-config: | |
runs-on: ubuntu-latest | |
environment: | |
name: preprod | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Set image tag 🏷 | |
shell: bash | |
id: set-default-image-tag | |
run: | | |
echo "IMAGE_TAG_SHA=$(git rev-parse --short=12 ${GITHUB_SHA})" >> $GITHUB_ENV | |
- name: Checkout internal 🛎️ | |
id: checkout-internal | |
uses: actions/checkout@v3 | |
with: | |
repository: 'equinor/energyvision-internal' | |
ref: main | |
token: ${{ secrets.PADMS_PAT }} # Replace with ssh as per https://stackoverflow.com/questions/60222741/github-actions-and-git-clone-issue | |
- name: Modify radixconfig tag for preprod on main branch 🗒️ | |
if: github.ref == 'refs/heads/main' | |
shell: bash | |
id: modify-radix | |
run: | | |
# Install pre-requisite | |
python -m pip install --user ruamel.yaml | |
python ci/upgradeEnvironment.py studio ${{ env.IMAGE_TAG_SHA }} ${{ secrets.ENV }} | |
git config --global user.name 'github' | |
git config --global user.email '[email protected]' | |
git remote set-url origin https://x-access-token:${{ secrets.PADMS_PAT }}@github.com/equinor/energyvision-internal | |
if [[ `git status --porcelain` ]] | |
then | |
git commit -am "🚀 Deploy studios to preprod for tag ${{ env.IMAGE_TAG_SHA }}" | |
git pull --rebase origin main | |
git push origin HEAD:main | |
fi | |
- uses: act10ns/slack@v2 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: failure() | |
read-satellites: | |
runs-on: ubuntu-latest | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v3 | |
- id: set-matrix | |
name: Read from satellites.json | |
run: | | |
MATRIX=$(cat satellites.json) | |
echo "matrix=${MATRIX}" >> $GITHUB_OUTPUT | |
- uses: act10ns/slack@v2 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: failure() | |
deploy-all-studios: | |
needs: [update-radix-config, read-satellites] | |
runs-on: ubuntu-latest | |
environment: | |
name: preprod | |
strategy: | |
matrix: | |
dataset: ${{ fromJson(needs.read-satellites.outputs.matrix) }} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
DOCKER_BUILDKIT: 1 | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- id: deploy-satellite | |
uses: ./.github/workflows/deploy-v3/ | |
with: | |
imageName: ghcr.io/equinor/energyvision/studio-${{ matrix.dataset }} | |
datasetName: ${{ matrix.dataset }} | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
sanityApiToken: ${{ secrets.SANITY_API_TOKEN }} | |
sanityMutationToken: ${{ secrets.SANITY_STUDIO_MUTATION_TOKEN }} | |
sanityPreviewToken: ${{ secrets.SANITY_STUDIO_PREVIEW_SECRET }} | |
brandmasterUrl: ${{ secrets.SANITY_STUDIO_BRANDMASTER_URL }} | |
brandmasterPluginSource: ${{ secrets.SANITY_STUDIO_BRANDMASTER_PLUGIN_SOURCE }} | |
fotowareClientId: ${{ secrets.SANITY_STUDIO_FOTOWARE_CLIENT_ID }} | |
fotowareTenantUrl: ${{ secrets.SANITY_STUDIO_FOTOWARE_TENANT_URL }} | |
fotowareRedirectOrigin: ${{ secrets.SANITY_STUDIO_FOTOWARE_REDIRECT_ORIGIN }} | |
fotowareAfExportUrl: ${{ secrets.SANITY_STUDIO_FOTOWARE_AF_EXPORT_URL }} | |
fotowareAfExportKey: ${{ secrets.SANITY_STUDIO_FOTOWARE_AF_EXPORT_KEY }} | |
screen9accountId: ${{ secrets.SANITY_STUDIO_SCREEN9_ACCOUNT_ID }} | |
screen9token: ${{ secrets.SANITY_STUDIO_SCREEN9_TOKEN }} | |
environment: ${{ secrets.ENV }} | |
- uses: act10ns/slack@v2 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: failure() |