We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc3984f commit 51fabdbCopy full SHA for 51fabdb
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+# AlterISO5のビルドを行うGithub Actions
2
+
3
+name: build AlterISO5
4
5
+on:
6
+ push:
7
+ branches:
8
+ - dev
9
+ pull_request:
10
11
12
+ workflow_dispatch:
13
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
18
+ steps:
19
+ - name: Checkout
20
+ uses: actions/checkout@v2
21
22
+ - name: Build Dockerfile
23
+ run: docker build -t alteriso5 .
24
25
+ - name: Run Dockerfile
26
+ run: docker run -it --rm -v $(pwd):/mnt alteriso5
0 commit comments