mirror of
https://github.com/bakhirev/assayo.git
synced 2025-09-02 02:29:48 +00:00
update
This commit is contained in:
parent
af9d91a29e
commit
fbd57f83ab
1 changed files with 5 additions and 3 deletions
|
@ -23,17 +23,19 @@ runs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Download report template
|
||||
- name: Clone report generator
|
||||
run: |
|
||||
git clone https://github.com/bakhirev/assayo.git
|
||||
shell: bash
|
||||
|
||||
- if: ${{ env.add_file_info }}
|
||||
# Full log.txt
|
||||
- if: ${{ inputs.add_file_info == 'true' }}
|
||||
run: |
|
||||
git --no-pager log --raw --numstat --oneline --all --reverse --date=iso-strict --pretty=format:"%ad>%aN>%aE>%s" | sed -e 's/\\/\\\\/g' | sed -e 's/`/"/g' | sed -e 's/\$/S/g' | sed -e '1s/^/R(f\`/' | sed -e '$s/$/\`\);/' > ./assayo/build/log.txt
|
||||
shell: bash
|
||||
|
||||
- if: ${{ !env.add_file_info }}
|
||||
# Small log.txt, without information about files
|
||||
- if: ${{ inputs.add_file_info != 'true' }}
|
||||
run: |
|
||||
git --no-pager log --oneline --all --reverse --date=iso-strict --pretty=format:"%ad>%aN>%aE>%s" | sed -e 's/\\/\\\\/g' | sed -e 's/`/"/g' | sed -e 's/\$/S/g' | sed -e '1s/^/R(f\`/' | sed -e '$s/$/\`\);/' > ./assayo/build/log.txt
|
||||
shell: bash
|
||||
|
|
Loading…
Add table
Reference in a new issue