Build, push and deploy Aleph Zero Dashboard to mainnet #13
Workflow file for this run
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: Build, push and deploy Aleph Zero Dashboard to mainnet | |
on: | |
workflow_dispatch: | |
jobs: | |
build-and-push: | |
name: Build and push | |
runs-on: ubuntu-20.04 | |
environment: | |
name: mainnet | |
steps: | |
- name: GIT | Checkout | |
uses: actions/checkout@v4 | |
- name: DOCKER | Build and push mainnet image | |
uses: ./.github/actions/build-and-push | |
id: build_mainnet | |
with: | |
environment: mainnet | |
build_envs: 'VITE_DISABLE_FIAT=1 VITE_DISABLE_TESTNET=1 VITE_DISABLE_DEVNET=1' | |
aws_mainnet_access_key_id: ${{ secrets.AWS_MAINNET_ACCESS_KEY_ID }} | |
aws_mainnet_secret_access_key: ${{ secrets.AWS_MAINNET_SECRET_ACCESS_KEY }} | |
outputs: | |
image_tag: ${{ steps.build_mainnet.outputs.image_tag }} | |
deploy-to-mainnet: | |
name: Deploy to mainnet | |
runs-on: ubuntu-20.04 | |
needs: [build-and-push] | |
environment: | |
name: mainnet | |
steps: | |
- name: GIT | Checkout | |
uses: actions/checkout@v4 | |
- name: MAINNET | Deploy Aleph Zero Dashboard | |
uses: ./.github/actions/deploy | |
id: deploy_mainnet | |
with: | |
environment: mainnet | |
kustomize_version: ${{ vars.KUSTOMIZE_VERSION }} | |
image_tag: ${{ needs.build-and-push.outputs.image_tag }} | |
github_token: ${{ secrets.CI_GH_TOKEN }} | |
slack-notification: | |
name: Slack notification | |
runs-on: ubuntu-20.04 | |
needs: [deploy-to-mainnet] | |
if: always() | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Send Slack message | |
uses: Cardinal-Cryptography/github-actions/slack-notification@v6 | |
with: | |
notify-on: "always" | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_INCOMING_WEBHOOK_DEV_ONDUTY }} |