Skip to content

Commit

Permalink
fix nightly version increment (#2926)
Browse files Browse the repository at this point in the history
  • Loading branch information
foxriver76 authored Sep 27, 2024
1 parent f922a11 commit efb6ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nightly-dev-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
// Figure out the next version
const versionBump = process.env.VERSION_BUMP || 'prerelease';
const nightlyVersion = `${parsed.inc(process.env.VERSION_BUMP, prereleaseIdentifier)}-${dateStr}-${sha}`;
const nightlyVersion = `${parsed.inc(versionBump, prereleaseIdentifier)}-${dateStr}-${sha}`;
// ensure that io-pack is in sync
const fs = require('fs');
Expand Down

0 comments on commit efb6ace

Please sign in to comment.