Skip to content

feat: add ability to define flavour for tag (#2881) #10

feat: add ability to define flavour for tag (#2881)

feat: add ability to define flavour for tag (#2881) #10

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 }}"