1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-14 11:57:59 +00:00
external-secrets/.github/workflows/docs.yml
Moritz Johner 673f12456a
feat: run scanner on pr (#1553)
Signed-off-by: Moritz Johner <beller.moritz@googlemail.com>

Signed-off-by: Moritz Johner <beller.moritz@googlemail.com>
2022-09-15 17:17:52 +02:00

24 lines
No EOL
416 B
YAML

name: Deploy Docs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: "go.mod"
- name: Build Docs
run: make docs.publish
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"