Skip to content

Commit d6c67e8

Browse files
authored
devops: support publishing @next version with manual trigger (#162)
1 parent 3e9c759 commit d6c67e8

2 files changed

Lines changed: 40 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Publish NPM
22
on:
3+
workflow_dispatch:
34
release:
45
types: [published]
56
jobs:
@@ -18,4 +19,11 @@ jobs:
1819
- name: Update npm
1920
run: npm install -g npm@latest
2021
- run: npm ci
21-
- run: npm publish
22+
- name: Publish release to NPM
23+
if: github.event_name == 'release'
24+
run: npm publish
25+
- name: Publish @next to NPM
26+
if: github.event_name == 'workflow_dispatch'
27+
run: |
28+
node utils/update_canary_version.js
29+
# npm publish --tag=next

utils/update_canary_version.js

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#!/usr/bin/env node
2+
/**
3+
* Copyright (c) Microsoft Corporation.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
const fs = require('fs');
19+
const path = require('path');
20+
const { execSync } = require('child_process');
21+
22+
const timestamp = execSync('git show -s --format=%ct HEAD', {
23+
stdio: ['ignore', 'pipe', 'ignore']
24+
}).toString('utf8').trim();
25+
26+
const packageJSON = require('../package.json');
27+
const newVersion = `${packageJSON.version}-alpha-${timestamp}000`;
28+
console.log('Setting version to ' + newVersion);
29+
30+
packageJSON.version = newVersion;
31+
fs.writeFileSync(path.join(__dirname, '../package.json'), JSON.stringify(packageJSON, null, 2) + '\n');

0 commit comments

Comments
 (0)