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: Deploy to PROD_PROD_CALENDAR to Google Apps Script | |
on: | |
push: | |
branches: | |
- main | |
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 | |
- name: Create new version and push | |
run: | | |
cd media_commons_booking_app | |
clasp deploy --deploymentId AKfycbx3bCPVCKcaLXmLf58o98gDnW11MiD0axU45YzAtOyXHjqZNgtKSWR1ljdopSaB189k -d "PROD_PROD_CALENDAR" |