Merge pull request #316 from cds-snc/add-privacy-page #354
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: Eleventy Build | |
on: | |
push: | |
paths-ignore: | |
- README.md | |
branches: | |
- main | |
jobs: | |
build-deploy: | |
name: Eleventy Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Install | |
run: npm install | |
- name: Build | |
run: npm run build | |
env: | |
PATH_PREFIX: ${{ github.event.repository.name }} | |
GITHUB_ORG: cds-snc | |
- name: Add a11y action | |
run: | | |
mkdir -p ./_site/.github/workflows/ | |
cp -r ./.github/workflows/a11y-tests.yaml ./_site/.github/workflows/a11y-tests.yaml | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # v3.9.3 | |
with: | |
publish_dir: ./_site | |
github_token: ${{ secrets.ACCESS_TOKEN }} | |
exclude_assets: 'admin/index.html,admin/config.yml' |