Skip to content

Commit

Permalink
BRASS-1203: Support Patch Release Tags in Docker Builds
Browse files Browse the repository at this point in the history
- Update all Gitlab CI YAML files to support patch tag releases.

Closes BRASS-1203
  • Loading branch information
erikostien-pingidentity committed Sep 13, 2023
1 parent eed877c commit b85fa5d
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ p.github:

- if: '$CI_COMMIT_REF_NAME =~ /^master$/'
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success

################################################
Expand Down
2 changes: 1 addition & 1 deletion ldap-sdk-tools/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,5 @@ d.ldap-sdk-tools:
- pingjvm/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingaccess/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,5 +218,5 @@ d.pingaccess:
- pingjvm/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingauthorize/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,5 @@ d.pingauthorize:
- pingjvm/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingauthorizepap/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,5 @@ d.pingauthorizepap:
- pingjvm/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingcentral/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,5 @@ d.pingcentral:
- pingjvm/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingdataconsole/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,5 +210,5 @@ d.pingdataconsole:
- pingjvm/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingdatasync/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,5 @@ d.pingdatasync:
- pingjvm/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingdelegator/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,5 +152,5 @@ d.pingdelegator:
- ci_scripts/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingdirectory/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,5 +166,5 @@ d.pingdirectory:
- pingjvm/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingdirectoryproxy/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,5 @@ d.pingdirectoryproxy:
- pingjvm/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingfederate/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,5 @@ d.pingfederate:
- pingjvm/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingintelligence/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,5 @@ d.pingintelligence:
- ci_scripts/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success
2 changes: 1 addition & 1 deletion pingtoolkit/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,5 @@ d.pingtoolkit:
- pingjvm/*
- .gitlab-ci.yml
when: on_success
- if: '$CI_COMMIT_TAG =~ /^\d{4}$/'
- if: '$CI_COMMIT_TAG =~ /^\d{4}\.?\d*/'
when: on_success

0 comments on commit b85fa5d

Please sign in to comment.