Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/release_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
echo "BRANCH_NAME=$(echo ${{ github.ref }} | sed -e 's,.*/\(.*\),\1,')" >> $GITHUB_ENV
echo "GPG_TTY=$(tty)" >> $GITHUB_ENV

- name: update Branch name in badges
run: |
sed -i 's/branch=.*)]/branch=${{ env.BRANCH_NAME }}\)]/g' README.md
sed -i 's/branch=.*\&/branch=${{ env.BRANCH_NAME }}\&/g' README.md

- name: Mannualy changing the pom versions
run: find . -type f -name "*pom.xml" -print0 | xargs -0 sed -i "s/${{ github.event.inputs.snapshotTags }}/${{ github.event.inputs.releaseTags }}/g"

Expand All @@ -48,7 +53,7 @@ jobs:
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.ACTION_PAT }}
commit-message: Updated Pom versions for release changes
commit-message: Release Bot Pre-release changes
title: Release changes
body: Automated PR for ${{ github.event.inputs.releaseTags }} release.
branch: release-branch
Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Tagging of repos

env:
tag: v1.2.3

on:
workflow_dispatch:
inputs:
tag:
description: 'Tag to be published'
required: true
default: 'v1.2.3'
type: string
body:
description: 'Release body message'
required: true
default: 'Changes in this Release'
type: string
pre-release:
description: 'Pre-release? True/False'
required: true
default: False
type: string

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.event.inputs.tag }}
release_name: ${{ github.event.inputs.tag }}
body: |
${{ github.event.inputs.body }}
draft: false
prerelease: ${{fromJSON(github.event.inputs.pre-release)}}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Maven Package upon a push](https://github.com/mosip/mosip-ref-impl/actions/workflows/push_trigger.yml/badge.svg?branch=release-1.2.0)](https://github.com/mosip/mosip-ref-impl/actions/workflows/push_trigger.yml)
[![Maven Package upon a push](https://github.com/mosip/mosip-ref-impl/actions/workflows/push_trigger.yml/badge.svg?branch=release-1.2.0.1)](https://github.com/mosip/mosip-ref-impl/actions/workflows/push_trigger.yml)

# Mosip Ref Impl

Expand Down
4 changes: 2 additions & 2 deletions authentication/authentication-childauthfilter-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<parent>
<groupId>io.mosip.authentication</groupId>
<artifactId>authentication-ref-impl-parent</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>
</parent>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>
<artifactId>authentication-childauthfilter-impl</artifactId>
<name>authentication-childauthfilter-impl</name>
<description>ID Authentication Filter reference Implementation to check allowed auth types for child</description>
Expand Down
4 changes: 2 additions & 2 deletions authentication/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.mosip.authentication</groupId>
<artifactId>authentication-ref-impl-parent</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>
<packaging>pom</packaging>

<name>id-authentication Reference Impl Parent</name>
Expand Down Expand Up @@ -69,7 +69,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<!-- Kernel components -->
<kernel.parent.version>1.2.0.1-SNAPSHOT</kernel.parent.version>
<kernel.parent.version>1.2.0.1-B1</kernel.parent.version>
<kernel-core.version>${kernel.parent.version}</kernel-core.version>
<kernel-logger-logback.version>${kernel.parent.version}</kernel-logger-logback.version>

Expand Down
2 changes: 1 addition & 1 deletion cache-provider-hazelcast/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.mosip.cacheprovider</groupId>
<artifactId>cache-provider-hazelcast</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>

<properties>
<!-- maven -->
Expand Down
8 changes: 4 additions & 4 deletions kernel/kernel-ref-idobjectvalidator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
<parent>
<groupId>io.mosip.kernel</groupId>
<artifactId>kernel-ref-parent</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>
</parent>

<name>kernel-ref-idobjectvalidator</name>
<artifactId>kernel-ref-idobjectvalidator</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>

<properties>
<kernel-core.version>1.2.0.1-SNAPSHOT</kernel-core.version>
<kernel-core.version>1.2.0.1-B1</kernel-core.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.version>3.8.0</maven.compiler.version>
<spring-boot.version>2.0.8.RELEASE</spring-boot.version>
<kernel-logger-logback.version>1.2.0.1-SNAPSHOT</kernel-logger-logback.version>
<kernel-logger-logback.version>1.2.0.1-B1</kernel-logger-logback.version>
</properties>
<dependencies>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions kernel/kernel-smsserviceprovider-msg91/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<name>kernel-smsserviceprovider-msg91</name>
<description>kernel-smsserviceprovider-msg91</description>
<url>https://github.com/mosip/commons</url>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

Expand Down Expand Up @@ -219,8 +219,8 @@
<aspectjweaver.version>1.8.12</aspectjweaver.version>
<micrometer.core.version>1.4.2</micrometer.core.version>
<micrometer.registry.prometheus.version>1.4.2</micrometer.registry.prometheus.version>
<kernel.core.version>1.2.0.1-SNAPSHOT</kernel.core.version>
<kernel.auth.adaptor.version>1.2.0.1-SNAPSHOT</kernel.auth.adaptor.version>
<kernel.core.version>1.2.0.1-B1</kernel.core.version>
<kernel.auth.adaptor.version>1.2.0.1-B1</kernel.auth.adaptor.version>
</properties>
<dependencies>

Expand Down
6 changes: 3 additions & 3 deletions kernel/kernel-virusscanner-clamav/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<parent>
<groupId>io.mosip.kernel</groupId>
<artifactId>kernel-ref-parent</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>
</parent>

<artifactId>kernel-virusscanner-clamav</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>
<properties>
<kernel.core.version>1.2.0.1-SNAPSHOT</kernel.core.version>
<kernel.core.version>1.2.0.1-B1</kernel.core.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.version>3.8.0</maven.compiler.version>
Expand Down
4 changes: 2 additions & 2 deletions kernel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.mosip.kernel</groupId>
<artifactId>kernel-ref-parent</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>
<packaging>pom</packaging>
<name>kernel</name>
<description>Parent project of MOSIP Kernel for Philippines</description>
Expand Down Expand Up @@ -122,7 +122,7 @@
<json.version>20180813</json.version>

<!-- kernel -->
<kernel-core.version>1.2.0.1-SNAPSHOT</kernel-core.version>
<kernel-core.version>1.2.0.1-B1</kernel-core.version>

<!-- utilities -->
<commons-math3>3.6.1</commons-math3>
Expand Down
8 changes: 4 additions & 4 deletions pre-registration-booking-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>io.mosip.preregistration</groupId>
<artifactId>pre-registration-booking-service</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>
<name>pre-registration-booking-service</name>
<description>Booking service of MOSIP Pre-registration</description>
<url>https://github.com/mosip/mosip-ref-impl</url>
Expand Down Expand Up @@ -47,8 +47,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<io.micrometer.prometheus.version>1.4.2</io.micrometer.prometheus.version>
<pre.registration.core.version>1.2.0.1-SNAPSHOT</pre.registration.core.version>
<kernel.core.version>1.2.0.1-SNAPSHOT</kernel.core.version>
<pre.registration.core.version>1.2.0.1-B1</pre.registration.core.version>
<kernel.core.version>1.2.0.1-B1</kernel.core.version>
<!-- Core -->
<spring.boot.version>2.0.2.RELEASE</spring.boot.version>
<spring.data.version>2.0.9.RELEASE</spring.data.version>
Expand Down Expand Up @@ -246,7 +246,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.2.3</version>
<version>1.2.9</version>
</dependency>
<dependency>
<groupId>net.minidev</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<parent>
<groupId>io.mosip.registrationprocessor</groupId>
<artifactId>pre-processor</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>
</parent>
<artifactId>registration-processor-external-integration-service</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>io.mosip.registrationprocessor</groupId>
<artifactId>pre-processor</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>
</parent>

<artifactId>registration-processor-external-stage</artifactId>
<version>1.2.0.1-SNAPSHOT</version>
<version>1.2.0.1-B1</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down