bytebeam-gcp - stage-simulator-4 - build [br-aznlbd9rij9i0nc3] #216
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "bytebeam-gcp - Argonaut" | |
run-name: "${{inputs.arg_task_title}}" | |
on: | |
workflow_dispatch: | |
inputs: | |
arg_task_title: | |
required: false | |
type: string | |
default: "[Argonaut] [manual] a27dgr3fyi4etqlo build - manual" | |
description: task short title to be used for display, format [Argonaut] [<Task Id>] <organization> <steptype> - <stepname> | |
arg_task_id: | |
required: true | |
type: string | |
description: build-id | |
arg_task_name: | |
required: true | |
type: string | |
description: task name | |
arg_ref: | |
required: true | |
type: string | |
description: user repo ref to be used for task | |
arg_extra_vars: | |
required: false | |
type: string | |
description: field for passing extra info, reserved for future | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Execute Task | |
steps: | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/} | |
- name: Execute Argonaut task | |
uses: argonautdev/argonaut-action@main | |
id: argo-task | |
with: | |
task-id: ${{ inputs.arg_task_id }} | |
task-name: ${{ inputs.arg_task_name }} | |
ref: ${{ inputs.arg_ref }} | |
auth-key: ${{ secrets.a27dgr3fyi4etqlo_ARGONAUT_KEY }} | |
auth-secret: ${{ secrets.a27dgr3fyi4etqlo_ARGONAUT_SECRET }} | |
extra-args: ${{ inputs.arg_extra_vars }} |