Skip to content

feat(envited.ascs.digital): Add offerings to form (#120) #70

feat(envited.ascs.digital): Add offerings to form (#120)

feat(envited.ascs.digital): Add offerings to form (#120) #70

name: SST staging deployment workflow
on:
push:
branches:
- develop
# Concurrency group name ensures concurrent workflow runs wait for any in-progress job to finish
concurrency:
group: merge-${{ github.ref }}
permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
jobs:
DeployApp:
runs-on: ubuntu-latest
environment: staging
env:
ENV: ${{ vars.ENV }}
NEXT_PUBLIC_UPLOAD_BUCKET_NAME: ${{ vars.NEXT_PUBLIC_UPLOAD_BUCKET_NAME }}
NEXTAUTH_URL: ${{ vars.NEXTAUTH_URL }}
NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }}
steps:
- name: Git clone the repository
uses: actions/checkout@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: arn:aws:iam::597778497612:role/GitHub-Actions
role-duration-seconds: 900
aws-region: eu-central-1
- name: Deploy app
run: |
npm ci --force && npx nx deploy:staging envited.ascs.digital
DeployOIDCClient:
runs-on: ubuntu-latest
environment: staging
if: contains(github.ref, 'oidc-client')
steps:
- name: Git clone the repository
uses: actions/checkout@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: arn:aws:iam::597778497612:role/GitHub-Actions
role-duration-seconds: 900
aws-region: eu-central-1
- name: Deploy OIDC client
run: |
npm ci --force && npx nx deploy:staging oidc-client.ascs.digital