Skip to content

Commit 3e44fa7

Browse files
authored
Fix publish action - PR#4 by glenn2223
- Updated publish action, `tslib` requirement and node version (no user-facing changes)
2 parents 00deedc + 00d1d22 commit 3e44fa7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/publish.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
# Setup .npmrc file to publish to npm
11-
- uses: actions/setup-node@v3
11+
- uses: actions/setup-node@v4
1212
with:
13-
node-version: '16.x'
13+
node-version: '20.x'
1414
registry-url: 'https://registry.npmjs.org'
15+
- run: npm i tslib -g
1516
- run: npm ci --no-optional
1617
- run: npm publish --scope=@topmarksdevelopment --access public
1718
env:

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4141
### Changes
4242

4343
- Developer dependency bumps (no user-facing changes)
44+
- Updated publish action, `tslib` requirement and node version (no user-facing changes)
4445

4546
## [1.0.0] - 2022-12-13
4647

0 commit comments

Comments
 (0)