mirror of
https://github.com/reecetech/version-increment.git
synced 2025-12-21 14:35:44 +00:00
Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f1fae3d6b7 | ||
|
|
77dfab16c0 | ||
|
|
2414f2fa44 | ||
|
|
f6d4e915f4 | ||
|
|
5f9f764060 | ||
|
|
0fd6f1742d | ||
|
|
8e33684d42 | ||
|
|
b7be5e00c2 | ||
|
|
ced1d4ac1d | ||
|
|
e7c0a5aac2 | ||
|
|
c1893b945a | ||
|
|
5d4fc14ad5 | ||
|
|
1d159768e8 | ||
|
|
69cfa4fa80 | ||
|
|
b9bae4a2dc | ||
|
|
53a0819e66 | ||
|
|
e53268eb3f |
20
.github/workflows/test-and-release.yml
vendored
20
.github/workflows/test-and-release.yml
vendored
@@ -13,10 +13,10 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Run ShellCheck
|
- name: Run ShellCheck
|
||||||
uses: ludeeus/action-shellcheck@94e0aab03ca135d11a35e5bfc14e6746dc56e7e9
|
uses: ludeeus/action-shellcheck@94e0aab03ca135d11a35e5bfc14e6746dc56e7e9 # v1.1.0
|
||||||
with:
|
with:
|
||||||
check_together: 'yes'
|
check_together: 'yes'
|
||||||
|
|
||||||
@@ -24,12 +24,12 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup bats
|
- name: Setup bats
|
||||||
uses: mig4/setup-bats@af9a00deb21b5d795cabfeaa8d9060410377686d
|
uses: mig4/setup-bats@af9a00deb21b5d795cabfeaa8d9060410377686d # v1.2.0
|
||||||
with:
|
with:
|
||||||
bats-version: 1.4.1
|
bats-version: 1.8.0
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: bats tests/*.bats
|
run: bats tests/*.bats
|
||||||
@@ -41,7 +41,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Lookup version
|
- name: Lookup version
|
||||||
id: version-lookup
|
id: version-lookup
|
||||||
@@ -51,14 +51,14 @@ jobs:
|
|||||||
id: version-increment
|
id: version-increment
|
||||||
run: ./version-increment.sh
|
run: ./version-increment.sh
|
||||||
env:
|
env:
|
||||||
current_version: ${{ steps.version-lookup.outputs.current-version }}
|
current_version: ${{ steps.version-lookup.outputs.CURRENT_VERSION }}
|
||||||
scheme: calver
|
scheme: calver
|
||||||
|
|
||||||
- name: Release version
|
- name: Release version
|
||||||
uses: marvinpinto/action-automatic-releases@919008cf3f741b179569b7a6fb4d8860689ab7f0
|
uses: marvinpinto/action-automatic-releases@919008cf3f741b179569b7a6fb4d8860689ab7f0 # v1.2.1
|
||||||
if: ${{ github.ref == 'refs/heads/main' }}
|
if: ${{ github.ref_name == github.event.repository.default_branch }}
|
||||||
with:
|
with:
|
||||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
automatic_release_tag: "${{ steps.version-increment.outputs.version }}"
|
automatic_release_tag: "${{ steps.version-increment.outputs.VERSION }}"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Get next version
|
- name: Get next version
|
||||||
uses: reecetech/version-increment@2022.2.4
|
uses: reecetech/version-increment@2023.3.1
|
||||||
id: version
|
id: version
|
||||||
with:
|
with:
|
||||||
scheme: semver
|
scheme: semver
|
||||||
@@ -91,6 +91,7 @@ Examples:
|
|||||||
| major-version | Major number of the incremented version |
|
| major-version | Major number of the incremented version |
|
||||||
| minor-version | Minor number of the incremented version |
|
| minor-version | Minor number of the incremented version |
|
||||||
| patch-version | Patch number of the incremented version |
|
| patch-version | Patch number of the incremented version |
|
||||||
|
| pre-release-label | Pre-release label of the incremented version |
|
||||||
| major-v-version | Major number of the incremented version, prefixed with a `v` character |
|
| major-v-version | Major number of the incremented version, prefixed with a `v` character |
|
||||||
| minor-v-version | Minor number of the incremented version, prefixed with a `v` character |
|
| minor-v-version | Minor number of the incremented version, prefixed with a `v` character |
|
||||||
| patch-v-version | Patch number of the incremented version, prefixed with a `v` character |
|
| patch-v-version | Patch number of the incremented version, prefixed with a `v` character |
|
||||||
|
|||||||
25
action.yml
25
action.yml
@@ -22,34 +22,37 @@ inputs:
|
|||||||
outputs:
|
outputs:
|
||||||
current-version:
|
current-version:
|
||||||
description: 'Current normal version detected'
|
description: 'Current normal version detected'
|
||||||
value: ${{ steps.version-lookup.outputs.current-version }}
|
value: ${{ steps.version-lookup.outputs.CURRENT_VERSION }}
|
||||||
current-v-version:
|
current-v-version:
|
||||||
description: 'Current normal version detected, prefixed with a `v` charatcter'
|
description: 'Current normal version detected, prefixed with a `v` charatcter'
|
||||||
value: ${{ steps.version-lookup.outputs.current-v-version }}
|
value: ${{ steps.version-lookup.outputs.CURRENT_V_VERSION }}
|
||||||
version:
|
version:
|
||||||
description: 'Incremented version calculated'
|
description: 'Incremented version calculated'
|
||||||
value: ${{ steps.version-increment.outputs.version }}
|
value: ${{ steps.version-increment.outputs.VERSION }}
|
||||||
v-version:
|
v-version:
|
||||||
description: 'Incremented version calculated, prefixed with a `v` charatcter'
|
description: 'Incremented version calculated, prefixed with a `v` charatcter'
|
||||||
value: ${{ steps.version-increment.outputs.v-version }}
|
value: ${{ steps.version-increment.outputs.V_VERSION }}
|
||||||
major-version:
|
major-version:
|
||||||
description: 'Major number of the incremented version'
|
description: 'Major number of the incremented version'
|
||||||
value: ${{ steps.version-increment.outputs.major-version }}
|
value: ${{ steps.version-increment.outputs.MAJOR_VERSION }}
|
||||||
minor-version:
|
minor-version:
|
||||||
description: 'Minor number of the incremented version'
|
description: 'Minor number of the incremented version'
|
||||||
value: ${{ steps.version-increment.outputs.minor-version }}
|
value: ${{ steps.version-increment.outputs.MINOR_VERSION }}
|
||||||
patch-version:
|
patch-version:
|
||||||
description: 'Patch number of the incremented version'
|
description: 'Patch number of the incremented version'
|
||||||
value: ${{ steps.version-increment.outputs.patch-version }}
|
value: ${{ steps.version-increment.outputs.PATCH_VERSION }}
|
||||||
|
pre-release-label:
|
||||||
|
description: 'Pre-release label of the incremented version'
|
||||||
|
value: ${{ steps.version-increment.outputs.PRE_RELEASE_LABEL }}
|
||||||
major-v-version:
|
major-v-version:
|
||||||
description: 'Major number of the incremented version, prefixed with a `v` charatcter'
|
description: 'Major number of the incremented version, prefixed with a `v` charatcter'
|
||||||
value: ${{ steps.version-increment.outputs.major-v-version }}
|
value: ${{ steps.version-increment.outputs.MAJOR_V_VERSION }}
|
||||||
minor-v-version:
|
minor-v-version:
|
||||||
description: 'Minor number of the incremented version, prefixed with a `v` charatcter'
|
description: 'Minor number of the incremented version, prefixed with a `v` charatcter'
|
||||||
value: ${{ steps.version-increment.outputs.minor-v-version }}
|
value: ${{ steps.version-increment.outputs.MINOR_V_VERSION }}
|
||||||
patch-v-version:
|
patch-v-version:
|
||||||
description: 'Patch number of the incremented version, prefixed with a `v` charatcter'
|
description: 'Patch number of the incremented version, prefixed with a `v` charatcter'
|
||||||
value: ${{ steps.version-increment.outputs.patch-v-version }}
|
value: ${{ steps.version-increment.outputs.PATCH_V_VERSION }}
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
@@ -64,6 +67,6 @@ runs:
|
|||||||
run: ${{ github.action_path }}/version-increment.sh
|
run: ${{ github.action_path }}/version-increment.sh
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
current_version: ${{ steps.version-lookup.outputs.current-version }}
|
current_version: ${{ steps.version-lookup.outputs.CURRENT_VERSION }}
|
||||||
increment: ${{ inputs.increment }}
|
increment: ${{ inputs.increment }}
|
||||||
scheme: ${{ inputs.scheme }}
|
scheme: ${{ inputs.scheme }}
|
||||||
|
|||||||
@@ -32,3 +32,10 @@ if [[ "$(uname)" == "Darwin" ]] ; then
|
|||||||
exit 9
|
exit 9
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
##==----------------------------------------------------------------------------
|
||||||
|
## Non GitHub compatibility - for testing both locally and in BATS
|
||||||
|
|
||||||
|
if [[ -z "${GITHUB_OUTPUT:-}" || -n "${BATS_VERSION:-}" ]] ; then
|
||||||
|
export GITHUB_OUTPUT="/dev/stdout"
|
||||||
|
fi
|
||||||
|
|||||||
@@ -65,6 +65,13 @@ function init_repo {
|
|||||||
[[ "$output" = *"Value of 'increment' is not valid, choose from 'major', 'minor', or 'patch'"* ]]
|
[[ "$output" = *"Value of 'increment' is not valid, choose from 'major', 'minor', or 'patch'"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@test "no deprecated set-output calls made" {
|
||||||
|
run grep -q "::set-output" version-increment.sh
|
||||||
|
|
||||||
|
print_run_info
|
||||||
|
[ "$status" -eq 1 ]
|
||||||
|
}
|
||||||
|
|
||||||
@test "increments the patch digit correctly (semver)" {
|
@test "increments the patch digit correctly (semver)" {
|
||||||
init_repo
|
init_repo
|
||||||
|
|
||||||
@@ -75,10 +82,10 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=major-version::1"* ]] &&
|
[[ "$output" = *"MAJOR_VERSION=1"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=minor-version::2"* ]] &&
|
[[ "$output" = *"MINOR_VERSION=2"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=patch-version::4"* ]] &&
|
[[ "$output" = *"PATCH_VERSION=4"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=version::1.2.4"* ]]
|
[[ "$output" = *"VERSION=1.2.4"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "increments the minor digit correctly (semver)" {
|
@test "increments the minor digit correctly (semver)" {
|
||||||
@@ -91,10 +98,10 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=major-version::1"* ]] &&
|
[[ "$output" = *"MAJOR_VERSION=1"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=minor-version::3"* ]] &&
|
[[ "$output" = *"MINOR_VERSION=3"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=patch-version::0"* ]] &&
|
[[ "$output" = *"PATCH_VERSION=0"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=version::1.3.0"* ]]
|
[[ "$output" = *"VERSION=1.3.0"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "increments the major digit correctly (semver)" {
|
@test "increments the major digit correctly (semver)" {
|
||||||
@@ -107,10 +114,10 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=major-version::2"* ]] &&
|
[[ "$output" = *"MAJOR_VERSION=2"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=minor-version::0"* ]] &&
|
[[ "$output" = *"MINOR_VERSION=0"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=patch-version::0"* ]] &&
|
[[ "$output" = *"PATCH_VERSION=0"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=version::2.0.0"* ]]
|
[[ "$output" = *"VERSION=2.0.0"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "prefixes with v" {
|
@test "prefixes with v" {
|
||||||
@@ -123,11 +130,11 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=version::2.0.0"* ]] &&
|
[[ "$output" = *"VERSION=2.0.0"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=major-v-version::v2"* ]] &&
|
[[ "$output" = *"MAJOR_V_VERSION=v2"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=minor-v-version::v0"* ]] &&
|
[[ "$output" = *"MINOR_V_VERSION=v0"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=patch-v-version::v0"* ]] &&
|
[[ "$output" = *"PATCH_V_VERSION=v0"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=v-version::v2.0.0"* ]]
|
[[ "$output" = *"V_VERSION=v2.0.0"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "increments to a new month (calver)" {
|
@test "increments to a new month (calver)" {
|
||||||
@@ -140,7 +147,7 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=version::$(date +%Y.%-m.1)"* ]]
|
[[ "$output" = *"VERSION=$(date +%Y.%-m.1)"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "increments the patch digit within a month (calver)" {
|
@test "increments the patch digit within a month (calver)" {
|
||||||
@@ -153,7 +160,7 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=version::$(date +%Y.%-m.124)"* ]]
|
[[ "$output" = *"VERSION=$(date +%Y.%-m.124)"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "appends prerelease information if on a branch" {
|
@test "appends prerelease information if on a branch" {
|
||||||
@@ -167,5 +174,6 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=version::1.2.4-pre.${short_ref}"* ]]
|
[[ "$output" = *"PRE_RELEASE_LABEL=pre.${short_ref}"* ]]
|
||||||
|
[[ "$output" = *"VERSION=1.2.4-pre.${short_ref}"* ]]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,6 +29,13 @@ function init_repo {
|
|||||||
[[ "$output" = *"Value of 'scheme' is not valid"* ]]
|
[[ "$output" = *"Value of 'scheme' is not valid"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@test "no deprecated set-output calls made" {
|
||||||
|
run grep -q "::set-output" version-lookup.sh
|
||||||
|
|
||||||
|
print_run_info
|
||||||
|
[ "$status" -eq 1 ]
|
||||||
|
}
|
||||||
|
|
||||||
@test "finds the current normal version" {
|
@test "finds the current normal version" {
|
||||||
init_repo
|
init_repo
|
||||||
|
|
||||||
@@ -40,7 +47,7 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=current-version::0.1.2"* ]]
|
[[ "$output" = *"CURRENT_VERSION=0.1.2"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "prefixes with a v" {
|
@test "prefixes with a v" {
|
||||||
@@ -52,8 +59,8 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=current-version::0.1.2"* ]] &&
|
[[ "$output" = *"CURRENT_VERSION=0.1.2"* ]] &&
|
||||||
[[ "$output" = *"::set-output name=current-v-version::v0.1.2"* ]]
|
[[ "$output" = *"CURRENT_V_VERSION=v0.1.2"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "finds the current normal version even if there's a newer pre-release version" {
|
@test "finds the current normal version even if there's a newer pre-release version" {
|
||||||
@@ -66,7 +73,7 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=current-version::1.2.300"* ]]
|
[[ "$output" = *"CURRENT_VERSION=1.2.300"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "returns 0.0.0 if no normal version detected" {
|
@test "returns 0.0.0 if no normal version detected" {
|
||||||
@@ -76,7 +83,7 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=current-version::0.0.0"* ]]
|
[[ "$output" = *"CURRENT_VERSION=0.0.0"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "returns 0.0.0 if no normal version detected even if there's a pre-release version" {
|
@test "returns 0.0.0 if no normal version detected even if there's a pre-release version" {
|
||||||
@@ -88,7 +95,7 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=current-version::0.0.0"* ]]
|
[[ "$output" = *"CURRENT_VERSION=0.0.0"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "returns a calver if no normal version detected and calver scheme specified" {
|
@test "returns a calver if no normal version detected and calver scheme specified" {
|
||||||
@@ -100,7 +107,7 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=current-version::$(date '+%Y.%-m.0')"* ]]
|
[[ "$output" = *"CURRENT_VERSION=$(date '+%Y.%-m.0')"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "converts from older calver scheme automatically" {
|
@test "converts from older calver scheme automatically" {
|
||||||
@@ -112,7 +119,7 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=current-version::2020.9.2"* ]]
|
[[ "$output" = *"CURRENT_VERSION=2020.9.2"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "strips v from the version" {
|
@test "strips v from the version" {
|
||||||
@@ -124,5 +131,5 @@ function init_repo {
|
|||||||
|
|
||||||
print_run_info
|
print_run_info
|
||||||
[ "$status" -eq 0 ] &&
|
[ "$status" -eq 0 ] &&
|
||||||
[[ "$output" = *"::set-output name=current-version::3.4.5"* ]]
|
[[ "$output" = *"CURRENT_VERSION=3.4.5"* ]]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -74,7 +74,9 @@ fi
|
|||||||
|
|
||||||
# add pre-release info to version if not the default branch
|
# add pre-release info to version if not the default branch
|
||||||
if [[ "${current_ref}" != "refs/heads/${default_branch}" ]] ; then
|
if [[ "${current_ref}" != "refs/heads/${default_branch}" ]] ; then
|
||||||
new_version="${new_version}-pre.${git_commit}"
|
pre_release="pre.${git_commit}"
|
||||||
|
new_version="${new_version}-${pre_release}"
|
||||||
|
echo "PRE_RELEASE_LABEL=${pre_release}" >> "${GITHUB_OUTPUT}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "$(echo "${new_version}" | ${grep} -P "${pcre_semver}")" ]] ; then
|
if [[ -z "$(echo "${new_version}" | ${grep} -P "${pcre_semver}")" ]] ; then
|
||||||
@@ -86,11 +88,12 @@ fi
|
|||||||
|
|
||||||
echo "ℹ️ The new version is ${new_version}"
|
echo "ℹ️ The new version is ${new_version}"
|
||||||
|
|
||||||
echo "::set-output name=version::${new_version}"
|
# shellcheck disable=SC2129
|
||||||
echo "::set-output name=v-version::v${new_version}"
|
echo "VERSION=${new_version}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=major-version::${version_array[0]}"
|
echo "V_VERSION=v${new_version}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=minor-version::${version_array[1]}"
|
echo "MAJOR_VERSION=${version_array[0]}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=patch-version::${version_array[2]}"
|
echo "MINOR_VERSION=${version_array[1]}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=major-v-version::v${version_array[0]}"
|
echo "PATCH_VERSION=${version_array[2]}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=minor-v-version::v${version_array[1]}"
|
echo "MAJOR_V_VERSION=v${version_array[0]}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=patch-v-version::v${version_array[2]}"
|
echo "MINOR_V_VERSION=v${version_array[1]}" >> "${GITHUB_OUTPUT}"
|
||||||
|
echo "PATCH_V_VERSION=v${version_array[2]}" >> "${GITHUB_OUTPUT}"
|
||||||
|
|||||||
@@ -61,5 +61,5 @@ fi
|
|||||||
|
|
||||||
echo "ℹ️ The current normal version is ${current_version}"
|
echo "ℹ️ The current normal version is ${current_version}"
|
||||||
|
|
||||||
echo "::set-output name=current-version::${current_version}"
|
echo "CURRENT_VERSION=${current_version}" >> "${GITHUB_OUTPUT}"
|
||||||
echo "::set-output name=current-v-version::v${current_version}"
|
echo "CURRENT_V_VERSION=v${current_version}" >> "${GITHUB_OUTPUT}"
|
||||||
|
|||||||
Reference in New Issue
Block a user