This repository was archived by the owner on Apr 14, 2026. It is now read-only.
Add dependency-shepherd label to dependabot.yml (#133) #157
This file contains hidden or 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: Publish Documentation | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| workflow_dispatch: | ||
| permissions: | ||
| contents: write | ||
| jobs: | ||
| deploy: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | ||
| - uses: actions/setup-python@7f4fc3e22c37d6ff65e88745f38bd3157c663f7c # v4.9.1 | ||
| with: | ||
| python-version: 3.x | ||
| - uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0 | ||
| with: | ||
| key: ${{ github.ref }} | ||
| path: .cache | ||
| - run: | | ||
| pip install --only-binary=:all: -r requirements-lock.txt | ||
| - run: mkdocs gh-deploy --force | ||
| publish-codeva: | ||
| name: Publish CodeVA | ||
| uses: department-of-veterans-affairs/code-va/.github/workflows/build-publish-docs.yaml@main | ||
|
Check failure on line 27 in .github/workflows/publish-docs.yml
|
||
| with: | ||
| branch: ${{ github.ref_name }} | ||
| repository: ${{ github.repository }} | ||
| secrets: | ||
| token: ${{ secrets.READ_TEAM_PAT}} | ||