Fix Build With Minified Files (#21) #120
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 to Hub CDN on merge Master | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
- name: Auth GCloud | |
uses: "google-github-actions/auth@v0" | |
with: | |
credentials_json: "${{ secrets.GCE_AUTH_JSON }}" | |
- name: Upload CSS | |
uses: "google-github-actions/upload-cloud-storage@v0" | |
with: | |
path: "dist" | |
destination: "squid-css" |