Skip to content

Commit 3529119

Browse files
authored
2.1.1 - npm signature hotfix (#140)
Hotfix for npm signature signing
1 parent fef37e9 commit 3529119

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

.github/workflows/master-deployment.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,7 @@ jobs:
105105
- run: tar xvf *.tgz package
106106
- run: npx @neo4j/code-signer --verify --app ./package --root-cert neo4j_desktop.cert
107107
- run: rm -rf package
108-
- name: Publish to npm registry
109-
uses: JS-DevTools/npm-publish@v1
110-
with:
111-
token: ${{ secrets.NPM_TOKEN }}
112-
113-
108+
- name: Publish package to NPM 📦
109+
run: npm publish --access public neodash*.tgz
110+
env:
111+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ RUN chown -R nginx:nginx /usr/share/nginx/html/
3838
USER nginx
3939
EXPOSE 5005
4040
HEALTHCHECK cmd curl --fail http://localhost:5005 || exit 1
41-
LABEL version="2.1.0"
41+
LABEL version="2.1.1"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "neodash",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "NeoDash - Neo4j Dashboard Builder",
55
"neo4jDesktop": {
66
"apiVersion": "^1.2.0"

src/modal/AboutModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import BugReportIcon from '@material-ui/icons/BugReport';
1313
export const NeoAboutModal = ({ open, handleClose, getDebugState }) => {
1414
const app = "NeoDash - Neo4j Dashboard Builder";
1515
const email = "[email protected]";
16-
const version = "2.1.0";
16+
const version = "2.1.1";
1717

1818
const downloadDebugFile = () => {
1919
const element = document.createElement("a");

0 commit comments

Comments
 (0)