Skip to content

Commit

Permalink
for local
Browse files Browse the repository at this point in the history
  • Loading branch information
rlho committed Mar 13, 2024
1 parent a42925d commit 2d42779
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/deploy_dev_dev_cal_local.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy DEV_DEV_CALENDAR_Riho to Google Apps Script

on:
push:
branches:
- riho/**

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "18"

- name: Install dependencies
run: |
cd media_commons_booking_app
npm ci
- name: Set up clasp authentication
run: |
echo "$CLASP_CREDENTIALS" > ~/.clasprc.json
env:
CLASP_CREDENTIALS: ${{ secrets.CLASP_CREDENTIALS }}
- name: Install clasp
run: npm install -g @google/clasp
- name: Push to Google Apps Script
run: |
cd media_commons_booking_app
npm run deploy:dev
- name: Create new version and push
run: |
cd media_commons_booking_app
clasp deploy --deploymentId AKfycbxN9avYB9vuTMFzGFS3-E5KVlFItTsMaArwukxTQ_dHxN6pFRfEnMnDwqQTZRBmAae9Xg -d "DEV_LOCAL"

0 comments on commit 2d42779

Please sign in to comment.