update close button dimensions #60
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 to Google Cloud Storage | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| upload-files: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - id: auth | |
| name: Authenticate with Google Cloud | |
| uses: google-github-actions/auth@v2 | |
| with: | |
| credentials_json: '${{ secrets.GCLOUD_SERVICE_KEY }}' | |
| - name: Set up Google Cloud SDK | |
| uses: google-github-actions/setup-gcloud@v2 | |
| - name: Get minor version | |
| run: | | |
| export VERSION=$(jq '.version | sub(".[0-9]$"; "") | tonumber' < package.json) | |
| echo "version=$VERSION" >> $GITHUB_ENV | |
| - name: Sync files to Google Cloud Storage | |
| run: | | |
| gcloud storage rsync --recursive dist gs://mc-high-impact/sds/$version/dist | |
| gcloud storage rsync --recursive static/css gs://mc-high-impact/sds/$version/css |