From 1c294768fb24ec32e91e2965d72ac7b1d3845d6b Mon Sep 17 00:00:00 2001 From: "G. Allegri" Date: Wed, 10 Jan 2024 13:11:28 +0100 Subject: [PATCH] change tag separator to avoid geoserver_ overlap with geoserver_data_ --- .github/workflows/release.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9c2a8df..84e4e57 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: