Skip to content

Commit

Permalink
Merge branch 'main' into enh-404
Browse files Browse the repository at this point in the history
  • Loading branch information
surchs authored Dec 19, 2024
2 parents 9dd992b + cd50615 commit a6bf476
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 16 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,9 @@ jobs:
# TODO: Make this cleaner by for example using a custom hook and adding to document
- name: Add prod scripts
run: |
add_script='
<script async src="https://w.appzi.io/w.js?token=YVTHd"></script>
<script defer data-domain="query.neurobagel.org" src="https://plausible.neurobagel.org/js/script.js"></script>
'
sed -i "s|<!-- Additional script tags -->|${add_script}|" index.html
add_script='<script async src="https://w.appzi.io/w.js?token=YVTHd"></script><script defer data-domain="query.neurobagel.org" src="https://plausible.neurobagel.org/js/script.js"></script>'
# Need to use single quotes around sed to avoid ! to be interpreted as a history expansion character
sed -i 's|<!-- Additional script tags -->|'"${add_script}"'|' index.html
- name: Set up Node
uses: actions/setup-node@v4
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# v0.8.0 (Thu Dec 19 2024)

#### 🚀 Enhancements

- [MNT] Implemented error boundary [#406](https://github.com/neurobagel/query-tool/pull/406) ([@rmanaem](https://github.com/rmanaem) [@neurobagel-bot[bot]](https://github.com/neurobagel-bot[bot]))
- [REF] Move appzi and plausible to the gh pages build [#400](https://github.com/neurobagel/query-tool/pull/400) ([@surchs](https://github.com/surchs))
- [MNT] Refactored the `DownloadResultButton` [#396](https://github.com/neurobagel/query-tool/pull/396) ([@rmanaem](https://github.com/rmanaem))
- [ENH] Standardized query result files [#398](https://github.com/neurobagel/query-tool/pull/398) ([@rmanaem](https://github.com/rmanaem))

#### Authors: 3

- [@neurobagel-bot[bot]](https://github.com/neurobagel-bot[bot])
- Arman Jahanpour ([@rmanaem](https://github.com/rmanaem))
- Sebastian Urchs ([@surchs](https://github.com/surchs))

---

# v0.7.2 (Tue Dec 10 2024)

#### 🚀 Enhancements
Expand Down
11 changes: 0 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,3 @@
<!-- Additional script tags -->
</body>
</html>

<!-- Appzi-->
<script async src="https://w.appzi.io/w.js?token=YVTHd"></script>
<!-- End Appzi -->
<!-- Begin Plausibe -->
<script
defer
data-domain="query.neurobagel.org"
src="https://plausible.neurobagel.org/js/script.js"
></script>
<!-- End Plausibe -->

0 comments on commit a6bf476

Please sign in to comment.