mirror of
https://github.com/cfpwastaken/planetiler-openmaptiles.git
synced 2026-02-04 12:31:10 +00:00
31 lines
913 B
YAML
31 lines
913 B
YAML
# Publish a docker image on each commit to main
|
|
name: Publish a Snapshot
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
snapshot:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: 17
|
|
distribution: 'temurin'
|
|
cache: 'maven'
|
|
- name: 'Login to dockerhub'
|
|
run: docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" -p "${{ secrets.DOCKERHUB_PASSWORD }}"
|
|
- name: 'Build and push to dockerhub'
|
|
run: ./mvnw -B -ntp -Pjib-multi-arch -Dimage.tags="latest" package jib:build --file pom.xml
|
|
- run: sha256sum target/*with-deps.jar
|
|
- run: md5sum target/*with-deps.jar
|
|
- name: 'Upload artifact'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: planetiler-build
|
|
path: target/*with-deps.jar
|