fix: fix invalid workflow config #2
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 Project | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
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_ETHGLOBAL }} | |
run: | | |
echo "$CLASPRC_CONTENT" | base64 -d > ~/.clasprc.json | |
- name: Build the latest | |
run: npm run build | |
- name: Deploy ethglobal | |
run: | | |
echo "Deploying ethglobal..." | |
cd ${{ github.workspace }}/allhands | |
clasp push && echo "Deploying ethglobal... done." |