Skip to content

Commit

Permalink
chore: "Publish Lambda" step should run after "GitHub Release" step (#…
Browse files Browse the repository at this point in the history
…706)

The "Publish Lambda" step depends on a GitHub Release existing,
but it doesn't have a dependency on the step that creates said
GitHub Release.

Add that dependency.
  • Loading branch information
rix0rrr authored Jun 18, 2024
1 parent c612a32 commit 7d8aba7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ project.release?.addJobs({
release_prebuilt_lambda: {
runsOn: ['ubuntu-latest'],
name: 'Publish Lambda to GitHub Releases',
needs: ['release'],
needs: ['release', 'release_github'],
permissions: {
contents: github.workflows.JobPermission.WRITE,
},
Expand Down

0 comments on commit 7d8aba7

Please sign in to comment.