Skip to content

Commit c9b7987

Browse files
authored
fix (GH Action): Fixed syntax error in GH Action release job
- `release` job had a syntax array in the `needs` property regarding how array of needed jobs were defined. Signed-off-by: Jelius Basumatary <personal@jelius.dev> Reviewed-by: Jelius Basumatary <personal@jelius.dev> Approved-by: Jelius Basumatary <personal@jelius.dev>
2 parents d983a96 + d8db9db commit c9b7987

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
fi
5050
5151
release:
52-
needs: build, check
52+
needs: [build, check]
5353
if: needs.check.outputs.should_skip != 'true'
5454
runs-on: ubuntu-latest
5555

0 commit comments

Comments
 (0)