File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed
Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments