mirror of
https://github.com/xHyroM/gimi.git
synced 2024-11-09 18:28:06 +01:00
fix: github ci generation
add mkdir and if check
This commit is contained in:
parent
b62cf10f1f
commit
00b74be500
1 changed files with 5 additions and 2 deletions
|
@ -33,10 +33,13 @@ void generate_github(char *buffer, size_t size, const char *repo_domain,
|
||||||
" runs-on: ubuntu-24.04\n"
|
" runs-on: ubuntu-24.04\n"
|
||||||
" steps:\n"
|
" steps:\n"
|
||||||
" - uses: actions/checkout@v4\n"
|
" - uses: actions/checkout@v4\n"
|
||||||
|
" if: github.event_name != 'pull_request'\n"
|
||||||
" with:\n"
|
" with:\n"
|
||||||
" fetch-depth: 0\n"
|
" fetch-depth: 0\n"
|
||||||
" - run: |\n"
|
" - if: github.event_name != 'pull_request'\n"
|
||||||
" set +x"
|
" run: |\n"
|
||||||
|
" set +x\n\n"
|
||||||
|
" mkdir ~/.ssh -p"
|
||||||
" %s\n\n"
|
" %s\n\n"
|
||||||
" set -x\n"
|
" set -x\n"
|
||||||
" env:\n"
|
" env:\n"
|
||||||
|
|
Loading…
Reference in a new issue