Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
giohappy committed Oct 9, 2023
1 parent 9be3dbb commit 3ada18e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,23 @@ jobs:
push: false
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
postgis:
if: ${{ contains(github.ref, 'postgis_') }}
runs-on: ubuntu-latest
steps:
- uses: winterjung/split@v2
id: split
with:
separator: "_"
msg: ${{ github.ref }}
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- uses: ./.github/actions/build_and_push
with:
image: "postgis"
branch: ${{ github.ref }}
tag: ${{ steps.split.outputs._1 }}
push: false
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

0 comments on commit 3ada18e

Please sign in to comment.