mirror of
https://github.com/ivabus/pantry
synced 2024-11-27 02:35:08 +03:00
The action doesn’t create the file if not exist
Refs https://github.com/fregante/setup-git-user/issues/9
This commit is contained in:
parent
0a7f2d6bf1
commit
0d6b087c50
1 changed files with 4 additions and 1 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
@ -46,7 +46,10 @@ jobs:
|
||||||
run: sudo mv /usr/local/bin/* /tmp/
|
run: sudo mv /usr/local/bin/* /tmp/
|
||||||
|
|
||||||
# some build pieces fail if git has no user
|
# some build pieces fail if git has no user
|
||||||
- uses: fregante/setup-git-user@v1
|
- name: setup git user.name etc.
|
||||||
|
run: |
|
||||||
|
git config --global user.name 'github-actions[bot]'
|
||||||
|
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
|
||||||
|
|
||||||
- run: pkg build ${{ inputs.projects }}
|
- run: pkg build ${{ inputs.projects }}
|
||||||
id: build
|
id: build
|
||||||
|
|
Loading…
Reference in a new issue