Switch from set-output to $GITHUB_OUTPUT
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
This commit is contained in:
parent
6ccb5b2412
commit
b71469df8b
|
@ -19,7 +19,7 @@ jobs:
|
||||||
- name: Get version from tag
|
- name: Get version from tag
|
||||||
id: tag_name
|
id: tag_name
|
||||||
run: |
|
run: |
|
||||||
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/}
|
echo "current_version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Create and push tags
|
- name: Create and push tags
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.3.3] - 2022-10-13
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Switch from set-output to $GITHUB_OUTPUT to avoid warning
|
||||||
|
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
||||||
|
|
||||||
## [1.3.2] - 2022-09-15
|
## [1.3.2] - 2022-09-15
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
Loading…
Reference in New Issue