-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
130 additions
and
4 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Deploy to Google Apps Script for noah | ||
|
||
on: push | ||
branches: | ||
- 'noah/**' | ||
|
||
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 AKfycby6DWUvOJ-r6Qtq7WR734GWvw_ng5ZquXGacOVRwW-6iQh4OP7V_up8HAClkrsvtYfuWw -d "noah test" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Deploy to Google Apps Script for Riho | ||
|
||
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 | ||
- name: Create new version and push | ||
run: | | ||
cd media_commons_booking_app | ||
clasp deploy --deploymentId AKfycbxmvvwZQeYuYoP-J-ZFnrqdgyGHdb1COqqHT0ax6On_iO7oWicnk4fV1aig0hX7BMKOAA -d "riho test" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Deploy to Google Apps Script for production | ||
|
||
on: push | ||
branch: | ||
- 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 AKfycbxmQf1ZncntQwdIaGq372w5gbdiltLGmzo2xbV7efAbZQ7U7zWtMJBw0EQjnXZm4aYimw -d "production" |