Skip to content

chore(deps): bump the go_modules group across 1 directory with 9 updates #2

chore(deps): bump the go_modules group across 1 directory with 9 updates

chore(deps): bump the go_modules group across 1 directory with 9 updates #2

Workflow file for this run

name: Docs
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- uses: actions/setup-go@v3
with:
go-version: '1.18'
- uses: actions/setup-node@v3
with:
node-version: "16"
# Use the same make target both locally and on CI to make it easier to debug failures.
- run: make docs
# If markdownlint fixes issues, files will be changed. If so, fail the build.
- run: git diff --exit-code
# Upload the site so reviewers see it.
- uses: actions/upload-artifact@v3
with:
name: docs
path: site
if-no-files-found: error
- uses: peaceiris/[email protected]
if: github.repository == 'argoproj/argo-workflows' && github.ref == 'refs/heads/master'
env:
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: ./site