Skip to content

Commit 82a2f19

Browse files
committed
Generate provenance statements
1 parent a5acf24 commit 82a2f19

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

bootstrap.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ for dir in $(find unicode-* -maxdepth 0 -type d | sort -r); do
1111
cd "${dir}";
1212
echo "Taking care of ${dir}";
1313
git add -A;
14-
git commit -m 'Release v1.6.9';
15-
git tag v1.6.9;
14+
git commit -m 'Generate provenance statements';
15+
#git commit -m 'Release v1.6.10';
16+
#git tag v1.6.10;
1617
git push;
1718
git push --tags;
1819
cd ..;

static/.github/workflows/publish-on-tag.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@ name: publish-on-tag
33
on:
44
push:
55
tags:
6-
- '*'
6+
- '*'
77

88
jobs:
99
publish:
1010
runs-on: ubuntu-latest
11+
permissions:
12+
contents: read
13+
id-token: write
1114
steps:
1215
- name: Checkout
1316
uses: actions/checkout@v4
@@ -18,4 +21,4 @@ jobs:
1821
npm config set access public
1922
npm config set registry 'https://wombat-dressing-room.appspot.com/'
2023
npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
21-
npm publish
24+
npm publish --provenance --access public

templates/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@unicode/unicode-<%= version %>",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "JavaScript-compatible Unicode data. Arrays of code points, arrays of symbols, and regular expressions for Unicode v<%= version %>’s categories, scripts, blocks, bidi, and other properties.",
55
"homepage": "https://github.com/node-unicode/unicode-<%= version %>",
66
"main": "index.js",

0 commit comments

Comments
 (0)