build(deps): yarn upgrade #138
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/Test Docker Image CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
SKOPE_DEPLOY_ENVIRONMENT: staging | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up config.mk | |
run: envsubst < config.mk.template > config.mk | |
- name: convert CITATION.cff into citation text file for build constants | |
uses: citation-file-format/[email protected] | |
with: | |
args: "-f apalike -o _citation.txt" | |
- name: Build nuxt site for production deployment | |
run: make buildprod |