Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
VJalili committed Jun 14, 2024
1 parent 80dddd6 commit 928fd65
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/test_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ on:
env:
AZURE_STORAGE_ACCOUNT_NAME: 'cromwell7379410456f0'
AZURE_STORAGE_CONTAINER_NAME: 'workflows'
WORKFLOW_PATH: "https://cromwell7379410456f0.blob.core.windows.net/tests-inputs/Aaa.wdl"
WORKFLOW_INPUTS_PATH: "https://cromwell7379410456f0.blob.core.windows.net/tests-inputs/aaa_test_inputs.json"
WORKFLOW_DEPENDENCIES_PATH: "https://cromwell7379410456f0.blob.core.windows.net/tests-inputs/test_wdls.zip"

permissions:
id-token: write
Expand All @@ -49,19 +52,19 @@ jobs:
with:
azure-storage-account-name: ${{ env.AZURE_STORAGE_ACCOUNT_NAME }}
azure-storage-container-name: ${{ env.AZURE_STORAGE_CONTAINER_NAME }}
workflow-path: "https://cromwell7379410456f0.blob.core.windows.net/tests-inputs/Aaa.wdl"
workflow-inputs-path: "https://cromwell7379410456f0.blob.core.windows.net/tests-inputs/aaa_test_inputs.json"
workflow-dependencies-path: "https://cromwell7379410456f0.blob.core.windows.net/tests-inputs/test_wdls.zip"
workflow-path: ${{ env.WORKFLOW_PATH }}
workflow-inputs-path: ${{ env.WORKFLOW_INPUTS_PATH }}
workflow-dependencies-path: ${{ env.WORKFLOW_DEPENDENCIES_PATH }}
subcommand: "submit"
- name: Monitor submission status
id: monitor
uses: Genometric/[email protected]
with:
azure-storage-account-name: 'cromwell7379410456f0'
azure-storage-container-name: 'workflows'
workflow-path: "https://cromwell7379410456f0.blob.core.windows.net/tests-inputs/Aaa.wdl"
workflow-inputs-path: "https://cromwell7379410456f0.blob.core.windows.net/tests-inputs/aaa_test_inputs.json"
workflow-dependencies-path: "https://cromwell7379410456f0.blob.core.windows.net/tests-inputs/test_wdls.zip"
azure-storage-account-name: ${{ env.AZURE_STORAGE_ACCOUNT_NAME }}
azure-storage-container-name: ${{ env.AZURE_STORAGE_CONTAINER_NAME }}
workflow-path: ${{ env.WORKFLOW_PATH }}
workflow-inputs-path: ${{ env.WORKFLOW_INPUTS_PATH }}
workflow-dependencies-path: ${{ env.WORKFLOW_DEPENDENCIES_PATH }}
workflow-id: ${{ steps.submit.outputs.workflowId }}
subcommand: "monitor"
- name: Get the output time
Expand Down

0 comments on commit 928fd65

Please sign in to comment.