Skip to content
check-square

GitHub Action

shiori-check

v1.0.2 Latest version

shiori-check

check-square

shiori-check

check your ghost in CI, only support yaya

Installation

Copy and paste the following snippet into your .yml file.

              

- name: shiori-check

uses: YAYA-shiori/yaya-CI-check@v1.0.2

Learn more about this action in YAYA-shiori/yaya-CI-check

Choose a version

yaya-CI-check

Promise me not to build the nar when the dic file is wrong, okay?

about github action: https://docs.github.com/actions

useage if check only: https://github.com/Taromati2/ghost/blob/master/.github/workflows/auto_check.yml

#//...
runs-on: windows-latest
steps:
  #//...
  - name: shiori-check
    uses: Taromati2/yaya-CI-check@v1
    with:
      shiori-path: .\master\shiori\aya.dll

useage if check defore release: https://github.com/Taromati2/package-factory/blob/master/.github/workflows/auto_release.yml

jobs:
  check:
    #//...
    runs-on: windows-latest
    steps:
      #//...
      - name: shiori-check
        uses: Taromati2/yaya-CI-check@v1
        with:
          shiori-path: .\Taromati2\ghost\master\shiori\aya.dll
      #//...
  build:
    #//...
    needs: check
    #//...

Attention!

This check will perform a load of yaya.dll, so the variable file will be created
We recommend that the check for ghost and the creation of the nar are done separately in different github actions jobs
or check for ghost after the creation of the nar