Release 0.8.0 #44
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
# Build Zotero plugin. | |
name: Build Zotero OCR | |
on: | |
push: | |
# branches: [ "master" ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ "master" ] | |
# schedule: | |
# - cron: '21 12 * * 0' | |
jobs: | |
build-plugin: | |
name: Build Zotero OCR plugin | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup git | |
run: git config --global user.email "[email protected]" && git config --global user.name "GitHub CI" | |
- name: Run build | |
run: ./release.sh $(git describe --tags || echo ci-test) && cp -a build/*.xpi . | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Zotero OCR plugin (zipped) | |
path: "*.xpi" |