forked from snario/allhands
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ethglobal/liam/deploy-script
feat: add deploy script to deploy built code
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Deploy Project | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
target: [ethglobal] # add more here for other accounts; implies CLASPRC_{NAME} exists w/ oauth | ||
env: | ||
SCRIPT_ID: "1eKtnybTCz-GKohMdtdEKVDBUzFK3suniSAT0UDEKsM_Fm5dR9aRMs3WN" | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16' | ||
|
||
- name: Install clasp | ||
run: npm install -g @google/clasp | ||
|
||
- name: Set up .clasp.json file | ||
run: | | ||
echo '{"scriptId":"${SCRIPT_ID}","rootDir":"dist"}' > ${{ github.workspace }}/allhands/.clasp.json | ||
- name: Set up OAuth credentials | ||
env: | ||
CLASPRC_CONTENT: ${{ secrets.CLASPRC_${{ matrix.target | upper }} }} | ||
run: | | ||
echo "$CLASPRC_CONTENT" | base64 -d > ~/.clasprc.json | ||
- name: Build the latest | ||
run: npm run build | ||
|
||
- name: Deploy ${{ matrix.target }} | ||
run: | | ||
echo "Deploying ${{ matrix.target }}..." | ||
cd ${{ github.workspace }}/allhands | ||
clasp push && echo "Deploying ${{ matrix.target }}... done." | ||