client #157
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: client | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "**" | |
branches: | |
- main | |
pull_request: | |
paths: | |
- "**" | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker/setup-qemu-action@v2 | |
- uses: docker/setup-buildx-action@v2 | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm install | |
- name: Check formatting | |
run: npm run prettier | |
- name: Build | |
run: npm run build | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build & Push Docker Test Build | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: hicsail/nist-frontend:test | |
build-args: | | |
VITE_AWS_KEY=${{ secrets.VITE_AWS_KEY }} | |
VITE_AWS_SECRET=${{ secrets.VITE_AWS_SECRET }} | |
VITE_AUTH_URL=${{ secrets.VITE_AUTH_URL }} | |
VITE_PROJECT_ID=${{ secrets.VITE_PROJECT_ID }} | |
VITE_CARGO_ENDPOINT=${{ secrets.VITE_CARGO_ENDPOINT }} | |
VITE_S3_ENDPOINT=${{ secrets.VITE_S3_ENDPOINT }} | |
VITE_AUTHSERVICE_URL=${{ secrets.VITE_AUTHSERVICE_URL }} | |
- name: Build & Push Docker Production Build | |
uses: docker/build-push-action@v4 | |
if: startsWith(github.ref, 'refs/tags/v') | |
with: | |
context: . | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: hicsail/nist-frontend:production | |
build-args: | | |
VITE_AWS_KEY=${{ secrets.VITE_AWS_KEY_PROD }} | |
VITE_AWS_SECRET=${{ secrets.VITE_AWS_SECRET_PROD }} | |
VITE_AUTH_URL=${{ secrets.VITE_AUTH_URL_PROD }} | |
VITE_PROJECT_ID=${{ secrets.VITE_PROJECT_ID_PROD }} | |
VITE_CARGO_ENDPOINT=${{ secrets.VITE_CARGO_ENDPOINT_PROD }} | |
VITE_S3_ENDPOINT=${{ secrets.VITE_S3_ENDPOINT_PROD }} | |
VITE_AUTHSERVICE_URL=${{ secrets.VITE_AUTHSERVICE_URL_PROD }} | |
- name: Push to Staging | |
uses: fjogeleit/http-request-action@v1 | |
if: github.ref == 'refs/heads/main' | |
with: | |
method: "POST" | |
url: ${{ secrets.PORTAINER_WEBHOOK }} | |
preventFailureOnNoResponse: true | |
- name: Push to Production | |
uses: fjogeleit/http-request-action@v1 | |
if: startsWith(github.ref, 'refs/tags/v') | |
with: | |
method: "POST" | |
url: ${{ secrets.PORTAINER_WEBHOOK_PRODUCTION }} | |
preventFailureOnNoResponse: true |