Skip to content

Commit 1c29476

Browse files
committed
change tag separator to avoid geoserver_ overlap with geoserver_data_
1 parent 943d7ad commit 1c29476

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66

77
jobs:
88
geoserver:
9-
if: ${{ contains(github.ref, 'geoserver_') }}
9+
if: ${{ contains(github.ref, 'geoserver#') }}
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: winterjung/split@v2
1313
id: split
1414
with:
15-
separator: "_"
15+
separator: "#"
1616
msg: ${{ github.ref }}
1717
- uses: actions/checkout@v3
1818
with:
@@ -26,13 +26,13 @@ jobs:
2626
username: ${{ secrets.DOCKERHUB_USERNAME }}
2727
password: ${{ secrets.DOCKERHUB_TOKEN }}
2828
postgis:
29-
if: ${{ contains(github.ref, 'postgis_') }}
29+
if: ${{ contains(github.ref, 'postgis#') }}
3030
runs-on: ubuntu-latest
3131
steps:
3232
- uses: winterjung/split@v2
3333
id: split
3434
with:
35-
separator: "_"
35+
separator: "#"
3636
msg: ${{ github.ref }}
3737
- uses: actions/checkout@v3
3838
with:
@@ -46,13 +46,13 @@ jobs:
4646
username: ${{ secrets.DOCKERHUB_USERNAME }}
4747
password: ${{ secrets.DOCKERHUB_TOKEN }}
4848
nginx:
49-
if: ${{ contains(github.ref, 'nginx_') }}
49+
if: ${{ contains(github.ref, 'nginx#') }}
5050
runs-on: ubuntu-latest
5151
steps:
5252
- uses: winterjung/split@v2
5353
id: split
5454
with:
55-
separator: "_"
55+
separator: "#"
5656
msg: ${{ github.ref }}
5757
- uses: actions/checkout@v3
5858
with:
@@ -66,13 +66,13 @@ jobs:
6666
username: ${{ secrets.DOCKERHUB_USERNAME }}
6767
password: ${{ secrets.DOCKERHUB_TOKEN }}
6868
geoserver_data:
69-
if: ${{ contains(github.ref, 'geoserver_data_') }}
69+
if: ${{ contains(github.ref, 'geoserver_data#') }}
7070
runs-on: ubuntu-latest
7171
steps:
7272
- uses: winterjung/split@v2
7373
id: split
7474
with:
75-
separator: "_"
75+
separator: "#"
7676
msg: ${{ github.ref }}
7777
- uses: actions/checkout@v3
7878
with:
@@ -86,13 +86,13 @@ jobs:
8686
username: ${{ secrets.DOCKERHUB_USERNAME }}
8787
password: ${{ secrets.DOCKERHUB_TOKEN }}
8888
letsencrypt:
89-
if: ${{ contains(github.ref, 'letsencrypt_') }}
89+
if: ${{ contains(github.ref, 'letsencrypt#') }}
9090
runs-on: ubuntu-latest
9191
steps:
9292
- uses: winterjung/split@v2
9393
id: split
9494
with:
95-
separator: "_"
95+
separator: "#"
9696
msg: ${{ github.ref }}
9797
- uses: actions/checkout@v3
9898
with:

0 commit comments

Comments
 (0)