Skip to content

Build, push and deploy Aleph Zero Dashboard to testnet #49

Build, push and deploy Aleph Zero Dashboard to testnet

Build, push and deploy Aleph Zero Dashboard to testnet #49

name: Build, push and deploy Aleph Zero Dashboard to testnet
on:
workflow_dispatch:
jobs:
build-and-push:
name: Build and push
runs-on: ubuntu-20.04
environment:
name: testnet
steps:
- name: GIT | Checkout
uses: actions/checkout@v4
- name: DOCKER | Build and push testnet image
uses: ./.github/actions/build-and-push
id: build_testnet
with:
environment: testnet
build_envs: 'VITE_DISABLE_MAINNET=1 VITE_DISABLE_FIAT=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_testnet.outputs.image_tag }}
deploy-to-testnet:
name: Deploy to testnet
runs-on: ubuntu-20.04
needs: [build-and-push]
environment:
name: testnet
steps:
- name: GIT | Checkout
uses: actions/checkout@v4
- name: TESTNET | Deploy Aleph Zero Dashboard
uses: ./.github/actions/deploy
id: deploy-testnet
with:
environment: testnet
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-testnet]
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_WEBHOOK_DEV_ONDUTY }}