Skip to content

Commit

Permalink
change tag separator to avoid geoserver_ overlap with geoserver_data_
Browse files Browse the repository at this point in the history
  • Loading branch information
giohappy committed Jan 10, 2024
1 parent 943d7ad commit 1c29476
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ on:

jobs:
geoserver:
if: ${{ contains(github.ref, 'geoserver_') }}
if: ${{ contains(github.ref, 'geoserver#') }}
runs-on: ubuntu-latest
steps:
- uses: winterjung/split@v2
id: split
with:
separator: "_"
separator: "#"
msg: ${{ github.ref }}
- uses: actions/checkout@v3
with:
Expand All @@ -26,13 +26,13 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
postgis:
if: ${{ contains(github.ref, 'postgis_') }}
if: ${{ contains(github.ref, 'postgis#') }}
runs-on: ubuntu-latest
steps:
- uses: winterjung/split@v2
id: split
with:
separator: "_"
separator: "#"
msg: ${{ github.ref }}
- uses: actions/checkout@v3
with:
Expand All @@ -46,13 +46,13 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
nginx:
if: ${{ contains(github.ref, 'nginx_') }}
if: ${{ contains(github.ref, 'nginx#') }}
runs-on: ubuntu-latest
steps:
- uses: winterjung/split@v2
id: split
with:
separator: "_"
separator: "#"
msg: ${{ github.ref }}
- uses: actions/checkout@v3
with:
Expand All @@ -66,13 +66,13 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
geoserver_data:
if: ${{ contains(github.ref, 'geoserver_data_') }}
if: ${{ contains(github.ref, 'geoserver_data#') }}
runs-on: ubuntu-latest
steps:
- uses: winterjung/split@v2
id: split
with:
separator: "_"
separator: "#"
msg: ${{ github.ref }}
- uses: actions/checkout@v3
with:
Expand All @@ -86,13 +86,13 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
letsencrypt:
if: ${{ contains(github.ref, 'letsencrypt_') }}
if: ${{ contains(github.ref, 'letsencrypt#') }}
runs-on: ubuntu-latest
steps:
- uses: winterjung/split@v2
id: split
with:
separator: "_"
separator: "#"
msg: ${{ github.ref }}
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 1c29476

Please sign in to comment.