Compare commits
2 Commits
8d8fe6e76f
...
9d6bb5bc79
Author | SHA1 | Date | |
---|---|---|---|
9d6bb5bc79 | |||
1c8781f552 |
@ -8,4 +8,6 @@ scripts
|
||||
|
||||
exported.png
|
||||
LICENSE
|
||||
README.md
|
||||
README.md
|
||||
|
||||
.github
|
19
.github/workflows/gradle.yml
vendored
Normal file
19
.github/workflows/gradle.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build and Publish Docker Image
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Sign-in to Private Registry "${REGISTRY}"
|
||||
run: docker login $REGISTRY -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
||||
- name: Building Docker Image
|
||||
run: /bin/bash scripts/build.sh
|
Loading…
Reference in New Issue
Block a user