Skip to content

[Automatic] Update CITATION.cff files #276

[Automatic] Update CITATION.cff files

[Automatic] Update CITATION.cff files #276

Workflow file for this run

name: keyboardGT
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch:
jobs:
cli:
name: keyboardGT
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
# Installation and Directories
- name: Get SDK Version from config
id: lookupSdkVersion
uses: mikefarah/yq@master
with:
cmd: |
yq -o=json CITATION.cff > CITATION.json
- name: Download and install saxon
run: |
wget https://github.com/Saxonica/Saxon-HE/releases/download/SaxonHE12-3/SaxonHE12-3J.zip
unzip SaxonHE12-3J.zip
- name: Make gh-pages_out, keyboards, doc folder
run: |
mkdir ghout
mkdir ghout/keyboards
mkdir ghout/keyboards/aletheia
mkdir ghout/keyboards/transkribus
mkdir ghout/keyboards/LAREX
mkdir ghout/keyboards/qurator-neat
mkdir ghout/keyboards/escriptorium
mkdir ghout/doc
mkdir keyboards
# Transformation and analysis
- name: Transform MUFI snapshot to Aletheia keyboard
run: |
java -jar saxon-he-12.3.jar -xsl:scripts/keyboard.xsl output=keyboards \
-s:scripts/keyboard.xsl
shell: bash
- name: Transform MUFI snapshot to Transkribus keyboard
run: |
java -jar saxon-he-12.3.jar -xsl:scripts/keyboard.xsl output=tkeyboards \
-s:scripts/keyboard.xsl
shell: bash
- name: Transform MUFI snapshot to LAREX keyboard
run: |
java -jar saxon-he-12.3.jar -xsl:scripts/keyboard.xsl output=lkeyboards \
-s:scripts/keyboard.xsl
shell: bash
- name: Transform MUFI snapshot to qurator-neat keyboard
run: |
java -jar saxon-he-12.3.jar -xsl:scripts/keyboard.xsl output=qkeyboards \
-s:scripts/keyboard.xsl
shell: bash
- name: Transform MUFI snapshot to eScriptorium keyboard
run: |
java -jar saxon-he-12.3.jar -xsl:scripts/keyboard.xsl output=ekeyboards \
-s:scripts/keyboard.xsl
shell: bash
- name: Make compressed table view
run: |
java -jar saxon-he-12.3.jar -xsl:scripts/keyboard.xsl output=keytable release=$GITHUB_RUN_NUMBER \
-s:scripts/keyboard.xsl -o:ghout/overview.md
shell: bash
- name: generate CITATION.cff
run: |
java -jar saxon-he-12.3.jar -xsl:scripts/metadata.xsl \
output=CITATION repoBase=$GITHUB_REF_Name repoName=$GITHUB_REPOSITORY bagitDumpNum=$GITHUB_RUN_NUMBER releaseTag=$GITHUB_REF_NAME \
-s:scripts/metadata.xsl -o:rawCITATION.cff
shell: bash
- name: formating CITATION.cff
id: lookupSdkVersion2
uses: mikefarah/yq@master
with:
cmd: |
yq -I4 rawCITATION.cff > CITATION.cff
# GH-style
- name: Copy css styles, keyboards, docs and yml files
run: |
cp scripts/table_hide.css ghout/
cp scripts/_config.yml ghout/
cp docu/* ghout/doc/
cp -r ghout/keyboards/* keyboards/
- name: Archive the keyboard files
uses: thedoctor0/zip-release@master
with:
filename: site.zip
path: 'keyboards'
# GitHub release
- name: Create GitHub release
id: create-new-release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ github.run_number }}
release_name: Keyboard-zip-package (Release${{ github.run_number }})
body: |
<dl>
<dt>Version:</dt>
<dd>Keyboard-zip-package (Release${{ github.run_number }}_${{ github.ref_name }})</dd>
<dt>Info:</dt>
<dd>
The file Keyboard-zip-package-v${{ github.run_number }}.zip is a zip archive file.<br/>
<ul><li>If you wish to use the rules, this file must first be unpacked.</li>
<li>The archive file contains virtual keyboards for various transcription editors or tools.</li>
<li>The keyboards are categorized according to the MUFI category scheme.</li>
<li>The column <i>💁 Browse by code chart (Link to MUFI)</i> provides an overview of the scope of the respective keyboard.</li></ul>
</dd>
</dl>
</dl>
draft: false
prerelease: false
- name: Upload asset to GitHub release
uses: actions/upload-release-asset@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-new-release.outputs.upload_url }}
asset_path: ./site.zip
asset_name: keyboardGT-v${{ github.run_number }}.zip
asset_content_type: application/zip
- name: Commit CITATION.cff
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add CITATION.cff
git commit -m "[Automatic] Update CITATION.cff files" || echo "Nothing to update"
git push origin HEAD:main
- name: Deploy GT-Overview to GitHub Pages
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: ghout # The folder the action should deploy.