Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
environment: Publish
steps:
- name: Checkout
uses: actions/checkout@v7
uses: actions/checkout@v5

- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24
registry-url: https://registry.npmjs.org
cache: yarn
package-manager-cache: false

- name: Install dependencies
run: yarn --frozen-lockfile
Expand All @@ -35,4 +35,4 @@ jobs:
run: yarn build

- name: Publish to npm
run: npm publish --provenance --access public
run: npm publish
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
"version": "1.1.2",
"description": "Backstage plugin for DX! https://getdx.com",
"main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"module": "./dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/get-dx/backstage-plugin.git",
"directory": "."
},
"author": "DX <developers@getdx.com>",
Expand Down
Loading