Skip to content

Commit 74932c1

Browse files
committed
Tweaking the deploy script for the gallery
1 parent 92d6984 commit 74932c1

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/develop-deployment.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ jobs:
5757
- run: curl ${{ secrets.INDEX_HTML_DEPLOYMENT_URL }} > dist/index.html
5858
- run: aws s3 rm s3://neodash-test.graphapp.io/ --recursive && aws s3 sync dist s3://neodash-test.graphapp.io/ --acl public-read
5959
deploy-gallery:
60-
needs: build-test
6160
runs-on: ubuntu-latest
6261
strategy:
6362
matrix:
@@ -68,13 +67,12 @@ jobs:
6867
uses: actions/setup-node@v1
6968
with:
7069
node-version: ${{ matrix.node-version }}
71-
- run: cd gallery
72-
- run: yarn install
73-
- run: yarn run build
70+
- run: cd gallery && yarn install
71+
- run: cd gallery && yarn run build
7472
- name: Set AWS credentials
7573
uses: aws-actions/configure-aws-credentials@v1
7674
with:
7775
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
7876
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
7977
aws-region: us-west-1
80-
- run: aws s3 rm s3://neodash-gallery.graphapp.io/ --recursive && aws s3 sync build s3://neodash-gallery.graphapp.io/ --acl public-read
78+
- run: aws s3 rm s3://neodash-gallery.graphapp.io/ --recursive && aws s3 sync gallery/build s3://neodash-gallery.graphapp.io/ --acl public-read

release-notes.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
## NeoDash 2.1.8
22
New features:
33
- Added the [Dashboard Gallery](https://neodash-gallery.graphapp.io), a live gallery of example NeoDash dashboards.
4-
- Updated testing pipeline to work as an independent procedure.
4+
- Added **Gauge Charts**, a contribution of the [BlueHound](https://github.com/zeronetworks/BlueHound) fork.
5+
- Updated testing pipeline to work as an independent procedure.
6+
- Added option to select a different Neo4j database for each report.
7+
8+
Bug fixes:
9+
- Fixed issue preventing dashboards to be shared with a non-standard database name.
10+
-

0 commit comments

Comments
 (0)