Skip to content

Fix yarn.lock

Fix yarn.lock #34

Workflow file for this run

name: MiniHackthon Production CI/CD
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
environment: Production
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g yarn
- name: yarn install
run: yarn install
- name: yarn build
env:
REACT_APP_FIREBASE_API_KEY: ${{ secrets.REACT_APP_FIREBASE_API_KEY }}
REACT_APP_AUTH_DOMAIN: ${{ secrets.REACT_APP_AUTH_DOMAIN }}
REACT_APP_PROJECT_ID: ${{ secrets.REACT_APP_PROJECT_ID }}
REACT_APP_STORAGE_BUCKET: ${{ secrets.REACT_APP_STORAGE_BUCKET }}
REACT_APP_MESSAGING_SENDER_ID: ${{ secrets.REACT_APP_MESSAGING_SENDER_ID }}
REACT_APP_APP_ID: ${{ secrets.REACT_APP_APP_ID }}
REACT_APP_MEASUREMENT_ID: ${{ secrets.REACT_APP_MEASUREMENT_ID }}
REACT_APP_EMAIL_ENDPOINT: ${{ secrets.REACT_APP_EMAIL_ENDPOINT }}
REACT_APP_SHARE_ENDPOINT: ${{ secrets.REACT_APP_SHARE_ENDPOINT }}
REACT_APP_FIREBASE_COLLECTION_PREFIX: ${{ secrets.REACT_APP_FIREBASE_COLLECTION_PREFIX }}
run: yarn build
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
name: build
path: build
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Download a Build Artifact
uses: actions/[email protected]
with:
name: build
path: build
- name: GitHub Action for Firebase
uses: w9jds/[email protected]
with:
args: deploy --only hosting --project production
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}