diff --git a/.github/workflows/next-release.yaml b/.github/workflows/next-release.yaml index 8a2eaaa3..e96e75ba 100644 --- a/.github/workflows/next-release.yaml +++ b/.github/workflows/next-release.yaml @@ -40,6 +40,9 @@ jobs: git tag -f "$VERSION" git push origin "$VERSION" + - name: Sync docs for embed + run: make sync-docs + - name: Run GoReleaser uses: goreleaser/goreleaser-action@v6 with: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3dc3bf81..1215ecde 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -27,6 +27,9 @@ jobs: exit 1 fi + - name: Sync docs for embed + run: make sync-docs + - uses: goreleaser/goreleaser-action@v6 with: version: "~> v2" diff --git a/.github/workflows/web-tests.yml b/.github/workflows/web-tests.yml index 9e870294..8e830cce 100644 --- a/.github/workflows/web-tests.yml +++ b/.github/workflows/web-tests.yml @@ -42,6 +42,8 @@ jobs: - name: Build web run: pnpm build:web + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Run unit tests run: pnpm test