Merge branch 'main' into nmb/state-machine

This commit is contained in:
Neil Martinsen-Burrell 2022-11-09 08:44:37 -06:00
commit e4ca145b1e
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
2 changed files with 9 additions and 0 deletions

View file

@ -4,8 +4,13 @@ name: Build and deploy
# a merged pull request) and on pushes of tagged commits. # a merged pull request) and on pushes of tagged commits.
# Pushes to main will deploy to Staging # Pushes to main will deploy to Staging
# This will also deploy nightly
on: on:
schedule:
# 3am UTC
- cron: '0 3 * * *'
push: push:
paths-ignore: paths-ignore:
- 'docs/**' - 'docs/**'

View file

@ -113,6 +113,10 @@ Within the `registrar/assets` folder, the `_theme` folder contains three files i
You can also compile the sass at any time using `npx gulp compile`. Similarly, you can copy over other static assets (images and javascript files), using `npx gulp copyAssets`. You can also compile the sass at any time using `npx gulp compile`. Similarly, you can copy over other static assets (images and javascript files), using `npx gulp copyAssets`.
## Nightly Builds
We run a deploy to staging from `main` nightly. You can see the deploys [here](https://github.com/cisagov/getgov/actions/workflows/deploy.yaml).
## Finite State Machines ## Finite State Machines
In an effort to keep our domain logic centralized, we are representing the state of In an effort to keep our domain logic centralized, we are representing the state of