-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into develop-humdrum
- Loading branch information
Showing
125 changed files
with
5,550 additions
and
38,666 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,7 @@ env: | |
# build artifacts | ||
DOC_BUILD: doc-build | ||
TOOLKIT_BUILD: toolkit-build | ||
FONTS: fonts | ||
|
||
# doxygen | ||
DOXYGEN_REPO: ${{ github.repository_owner }}/verovio-doxygen # works from rism-digital and from forks | ||
|
@@ -276,9 +277,9 @@ jobs: | |
|
||
- name: Upload js build artifact (${{ matrix.toolkit.target }}) | ||
if: ${{ matrix.toolkit.upload == true }} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4.4.3 | ||
with: | ||
name: ${{ env.TOOLKIT_BUILD }} | ||
name: ${{ env.TOOLKIT_BUILD }}-${{ github.run_id }} | ||
path: ${{ github.workspace }}/${{ env.TEMP_DIR }}/${{ matrix.toolkit.filepath }} | ||
|
||
|
||
|
@@ -301,9 +302,9 @@ jobs: | |
run: cp data/*.css $GITHUB_WORKSPACE/$TEMP_DIR/data/ | ||
|
||
- name: Upload font data artifact | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4.4.3 | ||
with: | ||
name: ${{ env.TOOLKIT_BUILD }} | ||
name: ${{ env.FONTS }}-${{ github.run_id }} | ||
path: ${{ github.workspace }}/${{ env.TEMP_DIR }} | ||
|
||
################################## | ||
|
@@ -366,15 +367,25 @@ jobs: | |
path: ${{ env.GH_PAGES_DIR }} | ||
|
||
- name: Download TOOLKIT_BUILD artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4.1.7 | ||
with: | ||
name: ${{ env.TOOLKIT_BUILD }} | ||
name: ${{ env.TOOLKIT_BUILD }}-${{ github.run_id }} | ||
path: artifacts/${{ env.TOOLKIT_BUILD }} | ||
|
||
- name: Copy artifacts to gh-pages | ||
- name: Copy the toolkit artifacts to gh-pages | ||
run: | | ||
cp -r artifacts/$TOOLKIT_BUILD/* $GH_PAGES_DIR/javascript/develop/ | ||
- name: Download FONTS artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: ${{ env.FONTS }}-${{ github.run_id }} | ||
path: artifacts/${{ env.FONTS }} | ||
|
||
- name: Copy the fonts artifacts to gh-pages | ||
run: | | ||
cp -r artifacts/$FONTS/* $GH_PAGES_DIR/javascript/develop/ | ||
- name: Check git status before commit | ||
working-directory: ${{ env.GH_PAGES_DIR }} | ||
run: | | ||
|
@@ -455,9 +466,9 @@ jobs: | |
run: (cat verovio.conf ; echo "OUTPUT_DIRECTORY = $GITHUB_WORKSPACE/$DOXYGEN_DIR") | doxygen - | ||
|
||
- name: Upload doxygen build artifact | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4.4.3 | ||
with: | ||
name: ${{ env.DOC_BUILD }} | ||
name: ${{ env.DOC_BUILD }}-${{ github.run_id }} | ||
path: ${{ github.workspace }}/${{ env.DOXYGEN_DIR }} | ||
|
||
############################################### | ||
|
@@ -485,9 +496,9 @@ jobs: | |
path: ${{ env.DOXYGEN_DIR }} | ||
|
||
- name: Download DOC_BUILD artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4.1.7 | ||
with: | ||
name: ${{ env.DOC_BUILD }} | ||
name: ${{ env.DOC_BUILD }}-${{ github.run_id }} | ||
path: artifacts/${{ env.DOC_BUILD }} | ||
|
||
- name: Remove old doc and copy build artifacts to DOXYGEN_DIR | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.