fix release build #1
Workflow file for this run
This file contains hidden or 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
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| release: | |
| name: Build & Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout plugin code | |
| uses: actions/checkout@v4 | |
| - name: Parse out and store the GitHub repository name | |
| id: myvars | |
| run: | | |
| IFS='/' read -r -a parts <<< "$GITHUB_REPOSITORY" | |
| GITHUB_REPO="${parts[1]}" | |
| echo "github_repo=$GITHUB_REPO" >> $GITHUB_OUTPUT | |
| echo "GITHUB REPO: $GITHUB_REPO" | |
| TAG_VERSION="${GITHUB_REF##*/}" | |
| echo "TAG VERSION: $TAG_VERSION" | |
| TAG_VERSION="${TAG_VERSION:1}" | |
| echo "TAG VERSION 2: $TAG_VERSION" | |
| echo "tag_version=$TAG_VERSION" >> $GITHUB_OUTPUT | |
| - name: Get Koha Version Branch Name | |
| id: koha-version-oldstable | |
| uses: "bywatersolutions/github-action-koha-get-version-by-label@v2" | |
| with: | |
| version-label: "oldstable" | |
| - name: Print minimum version | |
| run: | | |
| echo "Current oldstable version: ${{ steps.koha-version-oldstable.outputs.version-major-minor }}" | |
| - name: Build Koha Plugin kpz artifact | |
| id: kpz | |
| uses: "bywatersolutions/github-action-koha-plugin-create-kpz@v3" | |
| with: | |
| release-version: ${{ steps.myvars.outputs.tag_version }} | |
| release-name: "koha-plugin-recommendations" | |
| minimum-version: ${{ steps.koha-version-oldstable.outputs.version-major-minor }} | |
| plugin-module: "Koha/Plugin/Com/Liliputech/RecommenderEngine.pm" | |
| - name: See if kpz was created | |
| run: | | |
| echo "FILENAME: ${{ steps.kpz.outputs.filename }}" | |
| ls -alh | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| files: | | |
| ${{ steps.kpz.outputs.filename }} | |
| CHANGELOG.md | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |