Merge branch 'main' into za/1075-generate-csvs-to-publish

This commit is contained in:
zandercymatics 2023-11-29 08:38:53 -07:00
commit ff37e510f1
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
41 changed files with 1828 additions and 154 deletions

View file

@ -0,0 +1,41 @@
# This workflow runs on pushes to main
# any merge/push to main will result in development being deployed
name: Build and deploy development for release
on:
push:
paths-ignore:
- 'docs/**'
- '**.md'
- '.gitignore'
branches:
- main
jobs:
deploy-development:
if: ${{ github.ref_type == 'tag' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Compile USWDS assets
working-directory: ./src
run: |
docker compose run node npm install &&
docker compose run node npx gulp copyAssets &&
docker compose run node npx gulp compile
- name: Collect static assets
working-directory: ./src
run: docker compose run app python manage.py collectstatic --no-input
- name: Deploy to cloud.gov sandbox
uses: 18f/cg-deploy-action@main
env:
DEPLOY_NOW: thanks
with:
cf_username: ${{ secrets.CF_DEVELOPMENT_USERNAME }}
cf_password: ${{ secrets.CF_DEVELOPMENT_PASSWORD }}
cf_org: cisa-dotgov
cf_space: development
push_arguments: "-f ops/manifests/manifest-development.yaml"

View file

@ -15,6 +15,7 @@ on:
options:
- stable
- staging
- development
- ky
- es
- nl

View file

@ -14,8 +14,8 @@ on:
type: choice
description: Which environment should we flush and re-load data for?
options:
- stable
- staging
- development
- ky
- es
- nl