diff --git a/.gitea/workflows/tryActions.yaml b/.gitea/workflows/tryActions.yaml index 71b074c..ba2842e 100644 --- a/.gitea/workflows/tryActions.yaml +++ b/.gitea/workflows/tryActions.yaml @@ -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}}"