forked from exakat/exakat-ga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
19 lines (14 loc) · 811 Bytes
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
docker build . -t exakat/githubaction:latest
docker build --platform linux/amd64 . -t exakat/exakat-ga:latest
docker push exakat/exakat-ga:latest
docker run -it --rm -v `pwd`/test/:/github/workspace --entrypoint=/bin/bash exakat/githubaction:latest
docker run -it --rm -v `pwd`/test/:/github/workspace \
-e INPUT_IGNORE_RULES='Structures/CouldUseShortAssignation' \
-e INPUT_EXIT_ON_ISSUES='true' \
--entrypoint=/bin/bash exakat/githubaction:latest
docker run -it --rm -v `pwd`/test/:/github/workspace \
-e INPUT_EXIT_ON_ISSUES='1' \
--entrypoint=/bin/bash exakat/githubaction:latest
docker run -it --rm -v `pwd`/test/:/github/workspace \
-e INPUT_EXIT_ON_ISSUES='0' \
--entrypoint=/bin/bash exakat/githubaction:latest