test commit #34
This file contains hidden or 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 Script | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 95-github-action-pre-push-hook # For testing only | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| actions: read | |
| jobs: | |
| clasp-push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| #with: | |
| # ref: main # Ensure the correct branch is checked out, add back when deploy | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '16' | |
| - name: Install clasp | |
| id: install-clasp | |
| run: sudo npm install @google/clasp -g | |
| - name: Write CLASP_CREDENTIALS secret to .clasprc.json | |
| env: | |
| CLASP_CREDENTIALS: ${{secrets.CLASPRC_JSON}} | |
| run: | | |
| echo "$CLASP_CREDENTIALS" > "${HOME}/.clasprc.json" | |
| #UPDATE CLASP TOKEN | |
| - name: Save current .clasprc.json contents to CLASPRC_JSON_FILE environment variable | |
| id: save-clasprc | |
| run: | | |
| CLASPRC_JSON_CONTENT=$(jq -c . "${HOME}/.clasprc.json") | |
| echo ::add-mask::"$CLASPRC_JSON_CONTENT" | |
| echo "CLASPRC_JSON_FILE=$CLASPRC_JSON_CONTENT" >> $GITHUB_ENV | |
| - name: Update CLASPRC_JSON | |
| env: | |
| GH_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} | |
| CLASP_CREDENTIALS_CURRENT: ${{ secrets.CLASPRC_JSON }} | |
| run: | | |
| if [ "$CLASPRC_JSON_FILE" != "$CLASP_CREDENTIALS_CURRENT" ]; then | |
| echo "$CLASPRC_JSON_FILE" | gh secret set CLASPRC_JSON --repo ${{ github.repository }} | |
| echo "Updated CLASPRC_JSON secret" | |
| else | |
| echo "No update needed for CLASPRC_CREDENTIALS" | |
| fi | |
| #RUN CLASP PUSH SCRIPT | |
| - name: Make clasp_push.sh executable | |
| run: chmod +x ./.github/scripts/clasp_push.sh | |
| - name: Run clasp_push.sh | |
| run: | | |
| if [ -z "${{ steps.changed-files.outputs.all_changed_files }}" ]; then | |
| echo "No changes to push." | |
| else | |
| ./.github/scripts/clasp_push.sh ${{ steps.changed-files.outputs.all_changed_files }} | |
| fi | |
| rm "${HOME}/.clasprc.json" |