Skip to content

Commit 7f95e00

Browse files
committed
Bump to version 2.1.7 to enable yarn-based packaging
1 parent d76049a commit 7f95e00

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/master-deployment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
context: .
7272
file: ./Dockerfile
7373
push: true
74-
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_USERNAME }}/neodash:2.1.6
74+
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_USERNAME }}/neodash:2.1.7
7575
build-npm:
7676
needs: build-test
7777
runs-on: ubuntu-latest
@@ -88,7 +88,7 @@ jobs:
8888
- run: yarn install
8989
- run: yarn run build
9090
- run: curl ${{ secrets.INDEX_HTML_DEPLOYMENT_URL }} > dist/index.html
91-
- run: yarn pack
91+
- run: npm pack
9292
- run: rm -rf target
9393
- run: mkdir target
9494
- run: mv *.tgz target/
@@ -100,7 +100,7 @@ jobs:
100100
- run: npx @neo4j/code-signer --app ./package --private-key neo4j-labs-app.pem --cert neo4j-labs-app.cert --passphrase ${{ secrets.NEO4J_DESKTOP_PASSPHRASE }}
101101
- run: echo "${{ secrets.NEO4J_DESKTOP_CERTIFICATE }}" > neo4j_desktop.cert
102102
- run: npx @neo4j/code-signer --verify --app ./package --root-cert neo4j_desktop.cert
103-
- run: cd package && yarn pack
103+
- run: cd package && npm pack
104104
- run: mv package/*.tgz .
105105
- run: rm -rf package
106106
- run: tar xvf *.tgz package

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.6"
41+
LABEL version="2.1.7"

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## NeoDash 2.1.6
1+
## NeoDash 2.1.6 & 2.1.7
22
New features:
33
- Added *Radar Charts/Spider Charts*.
44
- Added optional markdown description for each report, to be displayed via the header.

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.6",
3+
"version": "2.1.7",
44
"description": "NeoDash - Neo4j Dashboard Builder",
55
"neo4jDesktop": {
66
"apiVersion": "^1.2.0"

release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## NeoDash 2.1.6
1+
## NeoDash 2.1.6 & 2.1.7
22
New features:
33
- Added *Radar Charts/Spider Charts*.
44
- Added optional markdown description for each report, to be displayed via the header.

src/modal/AboutModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import BugReportIcon from '@material-ui/icons/BugReport';
1212

1313
export const NeoAboutModal = ({ open, handleClose, getDebugState }) => {
1414
const app = "NeoDash - Neo4j Dashboard Builder";
15-
const version = "2.1.6";
15+
const version = "2.1.7";
1616

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

0 commit comments

Comments
 (0)