diff --git a/.github/workflows/orchestratorci.yml b/.github/workflows/orchestratorci.yml index 5fe6117..fbfa245 100644 --- a/.github/workflows/orchestratorci.yml +++ b/.github/workflows/orchestratorci.yml @@ -6,18 +6,17 @@ on: spec: required: true type: string - default: "x86" outputs: runner_id: description: "The result of the orchestrator job" - value: ${{ steps.provisioning.outputs.runner_id }} + value: ${{ jobs.provisioning.outputs.runner_id }} # Gunakan jobs jobs: provisioning: runs-on: gitea-orchestrator name: OrchestratorCI Job outputs: - result: ${{ steps.provisioning.outputs.result }} + runner_id: ${{ steps.provisioning.outputs.runner_id }} # Sesuaikan nama steps: - name: Run OrchestratorCI id: provisioning @@ -25,4 +24,4 @@ jobs: echo "Running OrchestratorCI with spec: ${{ inputs.spec }}" # Placeholder for actual OrchestratorCI commands # Simulate a result output - echo "::set-output name=runner_id::pandeganteng" \ No newline at end of file + echo "runner_id=pandeganteng" >> $GITHUB_OUTPUT \ No newline at end of file