Trying to validate the behavior manually.
All checks were successful
Try out action / Try action (push) Successful in 16s
Try out action / test-job (push) Successful in 0s
Lint / pre-commit Autoupdate (push) Successful in 52s

This commit is contained in:
2024-05-28 22:47:51 +02:00
parent defc14c64c
commit fc7d4ecb47

View File

@ -19,3 +19,14 @@ jobs:
start-version: 0.1.1 start-version: 0.1.1
- run: | - run: |
echo "Version found and result returned: ${{steps.versionup.outputs.current_version}}" echo "Version found and result returned: ${{steps.versionup.outputs.current_version}}"
test-job:
runs-on: pi
steps:
- name: Set output
id: set-output
run: |
echo "::set-output name=current_version::1.2.3"
- name: Use output
run: |
echo "Output current_version is ${{steps.set-output.outputs.current_version}}"