Skip to content

Commit

Permalink
add: main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mnt3710 committed Jul 29, 2024
1 parent 82efb8d commit 29fe410
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI
on: [push]
jobs:
FrontDeploy:
name: FrontDeploy
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@main
- name: setup Node
uses: actions/setup-node@v1
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- name: Install Firebase CLI
run: npm install -g firebase-tools
- name: Install Dependencies
run: yarn
- name: Build
run: yarn build
- name: deploy to Firebase Hosting
shell: bash
run: yarn channel-deploy $(echo ${GITHUB_REF#refs/heads/}) --token=${{ secrets.FIREBASE_TOKEN }}

0 comments on commit 29fe410

Please sign in to comment.