Skip to content

Commit 3719804

Browse files
committed
.
1 parent 7882b47 commit 3719804

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

.github/workflows/BASIC.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
on:
2+
push:
3+
branches: [ master ]
4+
pull_request:
5+
branches: [ master ]
6+
7+
jobs:
8+
build:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: install tools
15+
run: make prep
16+
- name: make move
17+
run: make move
18+
19+
- name: Upload Build files
20+
uses: actions/upload-artifact@v2
21+
with:
22+
name: SectorOS_Artifact-Build
23+
path: Build_files
24+
25+
- name: Create release
26+
uses: "marvinpinto/action-automatic-releases@latest"
27+
with:
28+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
29+
automatic_release_tag: "latest"
30+
prerelease: false
31+
title: Automatic Release Commit
32+
files: |
33+
Build_files/*.iso
34+
Build_files/*.bin

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Install-Grub-BIOS:
9494
cd grub && \
9595
./bootstrap && \
9696
./autogen.sh && \
97-
./configure --prefix=$HOME/local platform=pc && \
97+
./configure --prefix=~/local platform=pc && \
9898
make && \
9999
sudo make install && \
100100
@echo Installed Grub-BIOS

0 commit comments

Comments
 (0)