Skip to content

chore(deps): update terraform hashicorp/terraform to v1.6.0 #8452

chore(deps): update terraform hashicorp/terraform to v1.6.0

chore(deps): update terraform hashicorp/terraform to v1.6.0 #8452

Workflow file for this run

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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: actions/setup-node@v3
with:
node-version: 18
- 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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: actions/setup-node@v3
with:
node-version: 18
- 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 }}