Skip to content

Update index.ts

Update index.ts #282

name: Continuous Delivery
on:
push:
branches: [main, staging]
env:
NODE_VERSION: "18.x"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: "yarn"
- name: Install dependencies
run: "yarn install"
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
tags: |
ghcr.io/reservoirprotocol/relayer:latest
ghcr.io/reservoirprotocol/relayer:${{ github.sha }}
ghcr.io/reservoirprotocol/relayer:${{ github.ref_name }}-${{ github.sha }}
deploy-dev:
name: Deploy to Development
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [build]
environment: dev
if: github.ref == 'refs/heads/staging'
steps:
- name: Checkout repository k8s-configs
uses: actions/checkout@v3
with:
repository: unevenlabs/k8s-configs
token: ${{ secrets.DEVOPSBOT_TOKEN }}
path: k8s-configs
- name: Deploy to Dev Environment
working-directory: k8s-configs
run: |
./utils/version_update_batch.sh relayer ${{ github.sha }} $(grep -rl 'application: relayer-' dev/platform/ | tr '\n' ' ')
deploy-prod:
name: Deploy to Production
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [build]
environment: prod
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout repository k8s-configs
uses: actions/checkout@v3
with:
repository: unevenlabs/k8s-configs
token: ${{ secrets.DEVOPSBOT_TOKEN }}
path: k8s-configs
- name: Deploy to Prod Environment
working-directory: k8s-configs
run: |
./utils/version_update_batch.sh relayer ${{ github.sha }} $(grep -rl 'application: relayer-' prod/platform/ | tr '\n' ' ')