Skip to content

Commit 56c0a2c

Browse files
authored
update
1 parent 944933a commit 56c0a2c

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/build.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v2
11+
12+
- name: Set up environment
13+
run: |
14+
sudo apt-get update -y
15+
sudo dpkg --add-architecture i386 && sudo apt-get update -y
16+
sudo apt-get install -y dpkg fakeroot wine32 wine64 rpm nasm make genisoimage coreutils dosfstools
17+
chmod +x ./buildunix.sh
18+
working-directory: ~/repo
19+
20+
- name: Generate builds
21+
run: |
22+
sudo ./buildunix.sh
23+
working-directory: ~/repo
24+
25+
- name: Archive artifacts
26+
uses: actions/upload-artifact@v2
27+
with:
28+
name: disk_images
29+
path: ~/repo/disk_images

0 commit comments

Comments
 (0)