Skip to content

Commit afd428e

Browse files
author
joschi77
committed
-
1 parent 86f9a79 commit afd428e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/release.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release to Maven and Docker Repo
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
9+
release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
14+
- name: Set up JDK 1.8
15+
uses: actions/setup-java@v1
16+
with:
17+
java-version: 1.8
18+
19+
- name: Push to Docker Hub
20+
uses: docker/build-push-action@v1
21+
with:
22+
username: ${{ secrets.DOCKER_USERNAME }}
23+
password: ${{ secrets.DOCKER_PASSWORD }}
24+
repository: schneidergeo/postgis
25+
tag_with_ref: true
26+
tags: RELEASE
27+
28+

0 commit comments

Comments
 (0)