Исправлена сборка бинарных образов [2/3]
This commit is contained in:
parent
bddc10c93e
commit
9eca6d8157
|
@ -16,11 +16,24 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
|
|
||||||
|
- name: Configure Git user
|
||||||
|
run: |
|
||||||
|
git config --global user.email "github@github.com"
|
||||||
|
git config --global user.name "Build bot"
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
python3 build.py
|
python3 build.py
|
||||||
git add -f kernel.elf
|
|
||||||
git add -f mseos.hdd
|
- name: Add and commit files
|
||||||
git add -f mseos.iso
|
uses: EndBug/add-and-commit@v9
|
||||||
git commit -m "Update"
|
with:
|
||||||
git push origin HEAD:refs/heads/binary
|
add: 'kernel.elf mseos.hdd mseos.iso'
|
||||||
|
author_name: Bot
|
||||||
|
author_email: bot@example.com
|
||||||
|
commit: --signoff
|
||||||
|
message: Update
|
||||||
|
new_branch: binary
|
||||||
|
pathspec_error_handling: ignore
|
||||||
|
push: true
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in New Issue