build(deps-dev): bump @nx/react from 17.3.0 to 18.3.3 #476
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 staging | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
env: | |
username: cfu288 | |
PASSWORD: ${{ secrets.registry_password }} | |
jobs: | |
app: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ env.username }} | |
password: ${{ env.PASSWORD }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
with: | |
context: . | |
push: true | |
tags: cfu288/mere-medical:beta | |
# Image is built, now we need to trigger the deploy of the live staging site | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: npm install @octokit/action | |
- run: node .github/actions/trigger-stage-deploy.js | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_DEPLOY_GITHUB_TOKEN }} | |
WORKFLOW_ID: ${{ vars.STAGE_WORKFLOW_ID }} | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ env.username }} | |
password: ${{ env.PASSWORD }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
file: Dockerfile-docs | |
tags: cfu288/mere-medical-docs:beta |