Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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?
- Host: GitHub
- URL: https://github.com/YAYA-shiori/yaya-CI-check
- Owner: YAYA-shiori
- Created: 2021-10-08T02:48:13.000Z (about 3 years ago)
- Default Branch: exe
- Last Pushed: 2023-03-09T09:52:04.000Z (almost 2 years ago)
- Last Synced: 2024-07-30T20:57:44.724Z (5 months ago)
- Topics: aya, ci, github-actions, ukagaka, yaya
- Language: C++
- Homepage:
- Size: 83 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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