Skip to content

Commit 09f3ac4

Browse files
authored
Merge branch 'dev' into update-template-modules
2 parents 1ce7a5a + 15f5bfb commit 09f3ac4

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
- Update nf-test to 0.9.3 ([#3781](https://github.com/nf-core/tools/pull/3781))
1717
- update release checklist to battle test pipeline template more ([#3788](https://github.com/nf-core/tools/pull/3788))
1818
- update pipeline template subworkflows ([#3826](https://github.com/nf-core/tools/pull/3826))
19+
- fix AWS tests launch action ([#3827](https://github.com/nf-core/tools/pull/3827))
1920

2021
### Linting
2122

nf_core/pipeline-template/.github/workflows/awsfulltest.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ jobs:
2828
# Add full size test data (but still relatively small datasets for few samples)
2929
# on the `test_full.config` test runs with only one set of parameters
3030
with:
31-
workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }}
31+
workspace_id: ${{ vars.TOWER_WORKSPACE_ID }}
3232
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }}
33-
compute_env: ${{ secrets.TOWER_COMPUTE_ENV }}
33+
compute_env: ${{ vars.TOWER_COMPUTE_ENV }}
3434
revision: ${{ steps.revision.outputs.revision }}
35-
workdir: s3://${{ secrets.AWS_S3_BUCKET }}{% endraw %}/work/{{ short_name }}/{% raw %}work-${{ steps.revision.outputs.revision }}{% endraw %}
35+
workdir: s3://${{ vars.AWS_S3_BUCKET }}{% endraw %}/work/{{ short_name }}/{% raw %}work-${{ steps.revision.outputs.revision }}{% endraw %}
3636
parameters: |
3737
{
3838
"hook_url": "{% raw %}${{ secrets.MEGATESTS_ALERTS_SLACK_HOOK_URL }}{% endraw %}",
39-
"outdir": "s3://{% raw %}${{ secrets.AWS_S3_BUCKET }}{% endraw %}/{{ short_name }}/{% raw %}results-${{ steps.revision.outputs.revision }}{% endraw %}"
39+
"outdir": "s3://{% raw %}${{ vars.AWS_S3_BUCKET }}{% endraw %}/{{ short_name }}/{% raw %}results-${{ steps.revision.outputs.revision }}{% endraw %}"
4040
}
4141
profiles: test_full
4242

4343
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
4444
with:
4545
name: Seqera Platform debug log file
4646
path: |
47-
seqera_platform_action_*.log
48-
seqera_platform_action_*.json
47+
tower_action_*.log
48+
tower_action_*.json

nf_core/pipeline-template/.github/workflows/awstest.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ jobs:
1414
- name: Launch workflow via Seqera Platform
1515
uses: seqeralabs/action-tower-launch@v2
1616
with:
17-
workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }}
17+
workspace_id: ${{ vars.TOWER_WORKSPACE_ID }}
1818
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }}
19-
compute_env: ${{ secrets.TOWER_COMPUTE_ENV }}
19+
compute_env: ${{ vars.TOWER_COMPUTE_ENV }}
2020
revision: ${{ github.sha }}
21-
workdir: s3://${{ secrets.AWS_S3_BUCKET }}{% endraw %}/work/{{ short_name }}/{% raw %}work-${{ github.sha }}{% endraw %}
21+
workdir: s3://${{ vars.AWS_S3_BUCKET }}{% endraw %}/work/{{ short_name }}/{% raw %}work-${{ github.sha }}{% endraw %}
2222
parameters: |
2323
{
24-
"outdir": "s3://{% raw %}${{ secrets.AWS_S3_BUCKET }}{% endraw %}/{{ short_name }}/{% raw %}results-test-${{ github.sha }}{% endraw %}"
24+
"outdir": "s3://{% raw %}${{ vars.AWS_S3_BUCKET }}{% endraw %}/{{ short_name }}/{% raw %}results-test-${{ github.sha }}{% endraw %}"
2525
}
2626
profiles: test
2727

2828
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
2929
with:
3030
name: Seqera Platform debug log file
3131
path: |
32-
seqera_platform_action_*.log
33-
seqera_platform_action_*.json
32+
tower_action_*.log
33+
tower_action_*.json

0 commit comments

Comments
 (0)