2 Commits

Author SHA1 Message Date
48f7698271 v0.7.0 2025-07-30 21:15:30 -04:00
b2331350f3 Only publish docs on tags 2025-07-30 21:03:47 -04:00
5 changed files with 8 additions and 8 deletions

View File

@ -6,4 +6,3 @@
!sqlite/
!postgres/
!entrypoint-*
!Dockerfile*

View File

@ -33,7 +33,8 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v6
with:
file: "./Dockerfile-sqlite"
context: .
path: "{context}/Dockerfile-sqlite"
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta-sqlite.outputs.tags }}
@ -63,7 +64,8 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v6
with:
file: "./Dockerfile-postgres"
context: .
path: "{context}/Dockerfile-postgres"
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta-postgres.outputs.tags }}

View File

@ -2,8 +2,8 @@ name: docs
on:
push:
branches:
- main
tags:
- '*'
permissions:
contents: write

View File

@ -26,7 +26,7 @@ actix-rt = "2"
tempfile = "3"
pretty_assertions = "1"
temp-env = "0.3"
tokio = { version = "1.47", features = ["rt", "macros"] }
tokio = { version = "*", features = ["rt", "macros"] }
tokio-postgres = { version = "0.7.13", features = ["with-uuid-1"] }
bb8 = "0.9.0"
bb8-postgres = { version = "0.9.0", features = ["with-uuid-1"] }

View File

@ -13,8 +13,7 @@
1. Run `git push upstream`
1. Run `git push upstream --tag vX.Y.Z`
1. Run `cargo publish -p taskchampion-sync-server-core`
1. Run `cargo publish -p taskchampion-sync-server-storage-sqlite`
1. Run `cargo publish -p taskchampion-sync-server-storage-postgres` (and add any other new published packages here)
1. Run `cargo publish -p taskchampion-sync-server-storage-sqlite` (and add any other new published packages here)
1. Bump the patch version in `*/Cargo.toml` and add the `-pre` suffix. This allows `cargo-semver-checks` to check for changes not accounted for in the version delta.
1. Run `cargo build --release` again to update `Cargo.lock`
1. Commit that change with comment "Bump to -pre version".