Skip to content

Commit

Permalink
ci: update ci configuration to correct autofix / dev tag (#2813)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys authored Aug 8, 2024
1 parent ed1d477 commit 4008f67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
push:
tags:
- "v*"
- "!*-dev"
- "!*-dev.*"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
tags:
- 'v*'
- 'nightly'
- '!*-dev'
- "!*-dev.*"
pull_request:
branches: [ "main" ]
paths:
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ update-ui:
update-db-schema:
sqlite3 ee/tabby-db/schema.sqlite ".schema --indent" > ee/tabby-db/schema/schema.sql
sqlite3 ee/tabby-db/schema.sqlite -init ee/tabby-db/schema/sqlite-schema-visualize.sql "" > schema.dot
dot -Tsvg schema.dot > ee/tabby-db/schema/schema.svg
# Turn-off dot update as graphviz is problematic in CI environment since 08/03/2024
# dot -Tsvg schema.dot > ee/tabby-db/schema/schema.svg
rm schema.dot

caddy:
Expand Down

0 comments on commit 4008f67

Please sign in to comment.