Merge pull request #41 from reecetech/fixup

Fix: wrong version variable
This commit is contained in:
Phil Jay
2024-10-14 06:23:01 +11:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -151,4 +151,4 @@ jobs:
with: with:
draft: false draft: false
prerelease: false prerelease: false
tag_name: "${{ steps.version-increment.outputs.VERSION }}" tag_name: "${{ steps.version.outputs.version }}"

View File

@@ -13,7 +13,7 @@
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Get next version - name: Get next version
uses: reecetech/version-increment@2024.4.3 uses: reecetech/version-increment@2024.10.1
id: version id: version
with: with:
scheme: semver scheme: semver
@@ -34,7 +34,7 @@ use the API mode:
```yaml ```yaml
- name: Get next version - name: Get next version
uses: reecetech/version-increment@2024.4.3 uses: reecetech/version-increment@2024.10.1
id: version id: version
with: with:
use_api: true use_api: true