We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 944933a commit 56c0a2cCopy full SHA for 56c0a2c
.github/workflows/build.yaml
@@ -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
22
+ sudo ./buildunix.sh
23
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