Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/YAYA-shiori/yaya-CI-check

Promise me not to build the nar when the dic file is wrong, okay?
https://github.com/YAYA-shiori/yaya-CI-check

aya ci github-actions ukagaka yaya

Last synced: about 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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
```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
```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