Skip to content

Commit

Permalink
fix(actions): deploy single instances even if no cached state is needed
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavovalverde committed Oct 3, 2024
1 parent d4245f5 commit 2552c3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/cd-deploy-nodes-gcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,8 @@ jobs:
permissions:
contents: 'read'
id-token: 'write'
if: github.event_name == 'workflow_dispatch'
# Run even if we don't need a cached disk, but only when triggered by a workflow_dispatch
if: ${{ !failure(needs.get-disk-name) && github.event_name == 'workflow_dispatch' }}

Check warning on line 353 in .github/workflows/cd-deploy-nodes-gcp.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/cd-deploy-nodes-gcp.yml#L353

number of arguments is wrong. function "failure() -> bool" takes 0 parameters but 1 arguments are given [expression]
Raw output
.github/workflows/cd-deploy-nodes-gcp.yml:353:14: number of arguments is wrong. function "failure() -> bool" takes 0 parameters but 1 arguments are given [expression]

steps:
- uses: actions/checkout@v4.1.7
Expand Down

0 comments on commit 2552c3c

Please sign in to comment.