Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/next-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/web-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading