Skip to content

Commit

Permalink
Merge pull request #8 from PeerGC/dev
Browse files Browse the repository at this point in the history
Matching is operational with iOS app.
  • Loading branch information
artemas-radik authored Sep 8, 2020
2 parents 0a2c810 + 118ec4b commit 92f709c
Show file tree
Hide file tree
Showing 12 changed files with 1,359 additions and 165 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/DeployToFirebase-DEV.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Deploy to Firebase-DEV
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- dev
pull_request:
branches:
- dev

jobs:
# build:
# name: Build
# runs-on: ubuntu-latest
# steps:
# - name: Checkout Repo
# uses: actions/checkout@master
# - name: Install Dependencies
# working-directory: functions
# run: npm install
# - name: Build
# run: npm build functions
# - name: Archive Production Artifact
# uses: actions/upload-artifact@master
# with:
# name: functions
# path: functions
deploy:
name: Deploy
# needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Install Dependencies
working-directory: functions
run: npm install
- name: Deploy to Firebase
uses: w9jds/firebase-action@master
with:
args: deploy --only functions
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN_DEV }}
28 changes: 16 additions & 12 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion firebase.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{}
{}
5 changes: 5 additions & 0 deletions functions/.idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions functions/.idea/functions.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions functions/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions functions/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

80 changes: 80 additions & 0 deletions functions/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 92f709c

Please sign in to comment.