Feat: Bumps to cloudos-cli 2.11.2 #152
Workflow file for this run
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
on: | |
pull_request: | |
types: [review_requested, ready_for_review] | |
branches: | |
- main | |
- dev | |
jobs: | |
custom_test: | |
runs-on: ubuntu-latest | |
name: Test for cloudos job run | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run cloudos job run command | |
uses: lifebit-ai/action-cloudos-cli@0.3.5 | |
id: cloudos_job_run | |
with: | |
apikey: "${{ secrets.CLOUDOS_TOKEN }}" | |
cloudos_url: 'https://stg.sdlc.lifebit.ai' | |
workspace_id: "${{ secrets.CLOUDOS_WORKSPACE_ID }}" | |
project_name: "ci-testing" | |
workflow_name: "etl_profile_clean" | |
nextflow_profile: "internal_ci_profile_clean" | |
instance_type: "m5.4xlarge" | |
instance_disk: "40" | |
cost_limit: "2" | |
cloudos_cli_flags: "--resumable" | |
- name: Get the cloudos_job_run job ID | |
run: echo ${{steps.cloudos_job_run.outputs.job_id}} |