Skip to content

added some example for v2 literal templating (#3007) #13

added some example for v2 literal templating (#3007)

added some example for v2 literal templating (#3007) #13

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
- release-*
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Build Docs
run: make docs.publish
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"