Skip to content

Commit 691e560

Browse files
committed
Re: OpenHistoricalMap/issues#883, this incorporates the multiple sources work and is a tentative break in versioning from upstream. Versioning will be more obviously decoupled from upstream moving forward. This is a test of the GitHub Action and will lead to a release for our fork of tasking-manager.
1 parent df325f7 commit 691e560

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Publish Package to npmjs
2+
on:
3+
release:
4+
types: [published]
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
permissions:
9+
contents: read
10+
id-token: write
11+
steps:
12+
- uses: actions/checkout@v4
13+
# Setup .npmrc file to publish to npm
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: '20.x'
17+
registry-url: 'https://registry.npmjs.org'
18+
- run: npm ci
19+
- run: npm publish --provenance --access public
20+
env:
21+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@openhistoricalmap/id",
3-
"version": "2.29.0-dev",
4-
"description": "A friendly editor for OpenStreetMap",
3+
"version": "2.29.1",
4+
"description": "The OpenHistoricalMap fork of a friendly editor for OpenStreetMap",
55
"main": "dist/iD.min.js",
66
"repository": {
77
"type": "git",

0 commit comments

Comments
 (0)