Skip to content

Commit

Permalink
initial updates for 2.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kuanfandevops committed Oct 8, 2024
1 parent f1432f9 commit b499a13
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dev-release.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## For each release, the value of name, branches, RELEASE_NAME and PR_NUMBER need to be adjusted accordingly
## For each release, update lib/config.js: version and releaseBranch

name: TFRS Dev release-2.21.0
name: TFRS Dev release-2.22.0

on:
push:
branches: [release-2.21.0]
branches: [release-2.22.0]
paths:
- frontend/**
- backend/**
Expand All @@ -16,7 +16,7 @@ env:
## The pull request number of the Tracking pull request to merge the release branch to main
## Also remember to update the version in .pipeline/lib/config.js
PR_NUMBER: 2908
RELEASE_NAME: release-2.21.0
RELEASE_NAME: release-2.22.0

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tfrs-release.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## For each release, the value of name, branches, RELEASE_NAME and PR_NUMBER need to be adjusted accordingly
## For each release, update lib/config.js: version and releaseBranch

name: TFRS release-2.21.0
name: TFRS release-2.22.0

on:
workflow_dispatch:
Expand All @@ -11,7 +11,7 @@ env:
## The pull request number of the Tracking pull request to merge the release branch to main
## Also remember to update the version in .pipeline/lib/config.js
PR_NUMBER: 2908
RELEASE_NAME: release-2.21.0
RELEASE_NAME: release-2.22.0

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .pipeline/lib/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";
const options = require("@bcgov/pipeline-cli").Util.parseArguments();
const changeId = options.pr; //aka pull-request
const version = "2.21.0";
const version = "2.22.0";
const name = "tfrs";
const ocpName = "apps.silver.devops";

Expand All @@ -20,7 +20,7 @@ const phases = {
instance: `${name}-build-${changeId}`,
version: `${version}-${changeId}`,
tag: `build-${version}-${changeId}`,
releaseBranch: "release-2.21.0",
releaseBranch: "release-2.22.0",
},
dev: {
namespace: "0ab226-dev",
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tfrs",
"version": "2.21.0",
"version": "2.22.0",
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
Expand Down

0 comments on commit b499a13

Please sign in to comment.