We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad2778f commit 7ed0eceCopy full SHA for 7ed0ece
.github/workflows/CI.yml
@@ -5,7 +5,6 @@ name: Node.js CI
5
6
on:
7
push:
8
- tags: v*
9
branches: ['main']
10
pull_request:
11
tools/workspace-plugin/src/executors/is-docker-published/executor.ts
@@ -12,7 +12,7 @@ export default async function runExecutor(options: IsDockerPublishedExecutorSche
12
const packageJsonContent = readFileSync(packageJsonPath, 'utf-8');
13
const pkg = JSON.parse(packageJsonContent);
14
15
- const version = pkg.version;
+ const version = 'v' + pkg.version;
16
17
if (!version) {
18
console.error('package.json must contain a "version" field');
0 commit comments