Yarn file fixed #79
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: MiniHackthon Development CI/CD | |
on: | |
push: | |
branches: [development] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: Development | |
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 }} | |
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 development | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |