From a105b2e23e38f051b42144351325a86e3ad73d75 Mon Sep 17 00:00:00 2001 From: "riho.takagi" Date: Tue, 13 Feb 2024 21:04:37 -0500 Subject: [PATCH] Preview deployment --- .github/workflows/deploy_preview.yml | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/deploy_preview.yml diff --git a/.github/workflows/deploy_preview.yml b/.github/workflows/deploy_preview.yml new file mode 100644 index 00000000..d6b2d3dc --- /dev/null +++ b/.github/workflows/deploy_preview.yml @@ -0,0 +1,39 @@ +name: Deploy to Google Apps Script for Preview(use production calendar) + +on: + push: + branches: + - preview + +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 "for preview(use production calendar)"