Skip to content

Commit 8154747

Browse files
authored
Merge pull request #307 from calloc134/feature/add-githubactions
[build] CIの追加 (Github Actions)
2 parents c3981b1 + 7175a48 commit 8154747

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# AlterISO5のビルドを行うGithub Actions
2+
3+
name: build AlterISO5
4+
5+
on:
6+
push:
7+
branches:
8+
- dev
9+
pull_request:
10+
branches:
11+
- dev
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 --privileged --rm -v $(pwd):/mnt alteriso5
27+
28+
# TODO: アーティファクトをアップロードする機能の実装

0 commit comments

Comments
 (0)