chore(deps): update dependency @emotion/styled to v11.14.0 (#5305) #11010
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: Build & Deploy | |
on: | |
push: | |
schedule: | |
- cron: "0 20 * * *" | |
jobs: | |
build: | |
name: Build | |
if: github.ref != 'refs/heads/develop' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 19 | |
- run: | | |
yarn install --immutable | |
yarn build | |
env: | |
GOODREADS_KEY: ${{ secrets.GOODREADS_KEY }} | |
deploy: | |
name: Deploy Gatsby Site | |
if: github.ref == 'refs/heads/develop' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 19 | |
- run: | | |
yarn install --immutable | |
yarn build | |
yarn deploy | |
env: | |
GOODREADS_KEY: ${{ secrets.GOODREADS_KEY }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |