Initiated the action. #1

Merged
Philipp merged 28 commits from philipp-patch-1 into main 2024-05-28 23:29:17 +02:00
Showing only changes of commit fc7d4ecb47 - Show all commits

View File

@ -19,3 +19,14 @@ jobs:
start-version: 0.1.1
- run: |
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}}"