mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
use a single printf call
This commit is contained in:
parent
0a0f8d1de1
commit
17c2e0ff82
1 changed files with 3 additions and 3 deletions
6
.github/workflows/update.yml
vendored
6
.github/workflows/update.yml
vendored
|
@ -38,10 +38,10 @@ jobs:
|
|||
|
||||
- name: Update nix flake
|
||||
run: |
|
||||
printf '# Flake Lock\n\n```txt\n' >> $GITHUB_STEP_SUMMARY
|
||||
nix flake update --commit-lock-file
|
||||
git show -s --format='%B' >> $GITHUB_STEP_SUMMARY
|
||||
printf '```\n' >> $GITHUB_STEP_SUMMARY
|
||||
printf '# Flake Lock\n\n```txt\n%s```\n' \
|
||||
"$(git show -s --format='%B')" \
|
||||
>> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Pre-build oizys
|
||||
run: nix build .
|
||||
|
|
Loading…
Reference in a new issue