From ee044cae768baba8282c1192fd4eaa0f8744eb6f Mon Sep 17 00:00:00 2001 From: Beecher Baker Date: Fri, 30 Aug 2024 14:01:06 -0400 Subject: [PATCH] add notes for next steps --- .github/workflows/jekyll-gh-pages.yml | 56 +++++++++++++++++++ .../Panel/PanelSpecimens/SpecimenSummary.vue | 5 ++ 2 files changed, 61 insertions(+) create mode 100644 .github/workflows/jekyll-gh-pages.yml diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml new file mode 100644 index 0000000..6872ba8 --- /dev/null +++ b/.github/workflows/jekyll-gh-pages.yml @@ -0,0 +1,56 @@ +# copied from gh-pages.yml +name: public-build + +on: + push: + branches: [main, setup] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + with: + ref: 'main' + fetch-depth: 0 + + - uses: actions/checkout@v2 + with: + ref: 'setup' + fetch-depth: 0 + path: _setup + + - name: Insert setup branch + run: cp -r _setup/* . + + - name: Setup Node.js + uses: actions/setup-node@v1 + with: + node-version: '16' + + - name: Cache dependencies + uses: actions/cache@v2 + id: npm-cache + with: + path: ~/.npm + key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-node- + - name: Install dependencies + run: npm ci + + - name: Build public view + run: npm run build + + - name: Deploy to GitHub Pages + uses: crazy-max/ghaction-github-pages@v2 + with: + target_branch: gh-pages + build_dir: dist + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +permissions: + contents: write diff --git a/src/modules/otus/components/Panel/PanelSpecimens/SpecimenSummary.vue b/src/modules/otus/components/Panel/PanelSpecimens/SpecimenSummary.vue index e347030..e379620 100644 --- a/src/modules/otus/components/Panel/PanelSpecimens/SpecimenSummary.vue +++ b/src/modules/otus/components/Panel/PanelSpecimens/SpecimenSummary.vue @@ -42,6 +42,11 @@ For further reference see https://dwc.tdwg.org/terms/. // Possible solution: Find the most-specific OTU for the DarwinCore item, and use it to fetch images. // Possible solution: Fetch images based on collection item instead of OTU. +// Also where I was: taxonpages-dev isn't loading because it needs a different base_url in router.yml. +// Solution: Have different versions of router.yml in setup branch of dev & main repos — problem: need to document the difference; maybe okay +// Solution: Move dev to neolefty.github.io — problem is that it's not an official repo +// Solution: Modify build process — problem: needs investigation + import Tree from "@/modules/otus/components/Panel/PanelSpecimens/Tree.vue" import PanelGallery from "@/modules/otus/components/Panel/PanelGallery/PanelGallery.vue"