-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Отключил сборку бинарных релизов через CI
- Loading branch information
Showing
1 changed file
with
49 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
name: Release Build | ||
|
||
on: | ||
workflow_dispatch: | ||
branches-ignore: [ "pages" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: Configure Git user | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Build bot" | ||
- name: install depends | ||
run: sudo apt install clang-format python3 git gdisk gcc g++ xorriso make mtools curl dos2unix | ||
|
||
- name: install limine | ||
run: | | ||
git clone https://github.com/limine-bootloader/limine.git --branch=v5.x-branch-binary --depth=1 | ||
- name: build | ||
run: | | ||
dos2unix *.sh | ||
chmod +x build.sh | ||
./build.sh | ||
- name: Add and commit files | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
add: 'x86_64-kernel.elf x86_64-mseos.hdd' | ||
author_name: Bot | ||
author_email: [email protected] | ||
commit: --signoff | ||
message: Update | ||
new_branch: binary | ||
pathspec_error_handling: ignore | ||
push: true | ||
name: Release Build | ||
|
||
on: | ||
workflow_dispatch: | ||
branches-ignore: [ "pages" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: Configure Git user | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Build bot" | ||
- name: install depends | ||
run: sudo apt install clang-format python3 git gdisk gcc g++ xorriso make mtools curl dos2unix | ||
|
||
- name: install limine | ||
run: | | ||
git clone https://github.com/limine-bootloader/limine.git --branch=v5.x-branch-binary --depth=1 | ||
- name: build | ||
run: | | ||
dos2unix *.sh | ||
chmod +x build.sh | ||
./build.sh | ||
- name: Add and commit files | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
add: 'x86_64-kernel.elf x86_64-mseos.hdd' | ||
author_name: Bot | ||
author_email: [email protected] | ||
commit: --signoff | ||
message: Update | ||
new_branch: binary | ||
pathspec_error_handling: ignore | ||
push: true | ||
github_token: ${{ secrets.GITHUB_TOKEN }} |