mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 02:00:12 +08:00
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
'use strict';
|
|
|
|
const { execSync } = require('child_process');
|
|
const { version } = require('./package');
|
|
|
|
execSync('npm run test');
|
|
execSync(`git tag v${version}`);
|
|
execSync('npm publish'); |