Implement check_analysis3_age function (#344) #226
This file contains hidden or 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: Deploy conda env | |
| on: | |
| push: | |
| branches: main | |
| jobs: | |
| generate_matrix: | |
| uses: ./.github/workflows/get_changed_env.yml | |
| setup: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| ### Latest at time of writing | |
| uses: actions/checkout@v4 | |
| - name: Sync repository to Gadi | |
| ### Latest at time of writing | |
| uses: up9cloud/[email protected] | |
| env: | |
| HOST: gadi.nci.org.au | |
| TARGET: ${{secrets.GADI_REPO_PATH}} | |
| KEY: ${{secrets.DEPLOY_KEY}} | |
| USER: ${{secrets.GADI_USER}} | |
| deploy: | |
| needs: [ generate_matrix, setup ] | |
| uses: ./.github/workflows/deploy.yml | |
| with: | |
| environment: ${{ matrix.environment }} | |
| secrets: inherit | |
| if: ${{ needs.generate_matrix.outputs.matrix != '{"include":[]}' }} | |
| strategy: | |
| matrix: ${{fromJson(needs.generate_matrix.outputs.matrix)}} | |
| max-parallel: 1 | |
| fail-fast: false | |