Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/release-drafter-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
filter-by-commitish: true
template: |
### What's Changed

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
# Otherwise, this is a maintenance release on an older line
# Tag as v<major>.<minor> so users can pin to it
MAJOR_MINOR=$(echo "$VERSION" | cut -d. -f1,2)
DIST_TAG="v${MAJOR_MINOR}"
DIST_TAG="release-${MAJOR_MINOR}"
echo "Maintenance release detected, publishing under '$DIST_TAG' tag"
npm publish "${PUBLISH_FLAGS[@]}" --tag "$DIST_TAG"
fi
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Testing GitLabFlow branching strategy. This should automatically create a draft setting the project to `v1.1.0`.

Simulating bugfix in v1.1.0. This should trigger a v1.1.1 publish from the `release-drafter.yml`. Making a new PR.

Testing new feature on `v1.1.0`, from `main`. This should automatically create a draft setting the project to `v1.2.0`. Note that `v1.1.0` release has already been made, and a `v1.1.1` bugfix draft is present.

Simulating bugfix in `v1.2.1`. This should create a `1.2.2` draft release.

Testing new feature on `v1.2.0` from `main`. This should create a draft to `1.3.0` once the `release/1.3` branch is created. Retesting.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jescalada/git-proxy-deployment-testing",
"version": "1.3.0",
"version": "1.3.1",
"description": "Testing deployment workflows for @finos/git-proxy.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/git-proxy-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jescalada/git-proxy-cli",
"version": "1.3.0",
"version": "1.3.1",
"description": "Command line interface tool for FINOS GitProxy.",
"bin": {
"git-proxy-cli": "./dist/index.js"
Expand Down
Loading