Skip to content

Commit

Permalink
gh: update version logic
Browse files Browse the repository at this point in the history
  • Loading branch information
shanefontaine committed May 18, 2024
1 parent 2038699 commit 7d45753
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publishable-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
# On the production branch, publish only if there's a version change
if [ "${{ github.head_ref }}" == "production" ]; then
version_changed=$(git diff HEAD^ HEAD -- "${package_path}/package.json" | grep '"version":' || true)
if [ "$version_changed" ]; then
if [ -z "$version_changed" ]; then
continue
fi
fi
Expand Down
2 changes: 1 addition & 1 deletion packages/v2-explorer-backend/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ export const postgresConfig = {
maxConnections: process.env.POSTGRES_MAX_CONNECTIONS ? parseInt(process.env.POSTGRES_MAX_CONNECTIONS, 10) : 10
}

const cacheBuster = 20
const cacheBuster = 21

0 comments on commit 7d45753

Please sign in to comment.