Skip to content

Commit

Permalink
Merge pull request #42 from KPMP/KPMP-5135_github-action-build-image
Browse files Browse the repository at this point in the history
github action build image
  • Loading branch information
rlreamy authored Feb 15, 2024
2 parents 2951181 + 24f7eb0 commit 106b04c
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 6 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build-gradle-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build delphinus-data docker image

on:
push:

jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Get branch names
id: branch-names
uses: tj-actions/branch-names@v8

- name: Get current branch name
if: steps.branch-names.outputs.is_default == 'false'
run: |
echo "Running on branch: ${{ steps.branch-names.outputs.current_branch }}"
- name: Checkout project sources
uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-version: 7.4

- name: Login to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
username: ${{ secrets.ENV_DOCKER_USER }}
password: ${{ secrets.ENV_DOCKER_PASS }}

- name: Run build with Gradle Wrapper
run: |
./gradlew build docker
docker push "kingstonduo/delphinus-data:${{ steps.branch-names.outputs.current_branch }}"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ To generate the script that creates the symbolic links to the DeepZoom assets:

# Build
`./gradlew build docker`
The default tag is `latest` if no verison is provided
The default tag is the github branch name if no verison is provided
To pass a version when building the docker image execute
`./gradlew build docker -Ptag=<tagNumber>`
20 changes: 15 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,21 @@ task unpack(type: Copy) {
}

def getTagInfo() {
if (project.hasProperty('tag')) {
def tagValue = project.property('tag')
return tagValue
} else {
return "latest"
if (project.hasProperty('tag')) {
def tagValue = project.property('tag')
return tagValue
} else {
def gitBranch = "Unknown branch"
try {
def workingDir = new File("${project.projectDir}")
def result = 'git rev-parse --abbrev-ref HEAD'.execute(null, workingDir)
result.waitFor()
if (result.exitValue() == 0) {
gitBranch = result.text.trim()
}
} catch (e) {
}
return gitBranch
}
}

Expand Down

0 comments on commit 106b04c

Please sign in to comment.