Skip to content

Commit

Permalink
ci(LH-70586): Ensure release task is run when tag is pushed (#47)
Browse files Browse the repository at this point in the history
Yesterday, I merged a PR (#45) where I removed the requirement to run acceptance tests when pushing a tag (having acceptance tests run only on merge to main). However, I failed in that PR to remove the dependency between the `acceptance-tests` job and the `release` job. In this PR, I fix that and add a dependency from unit-test to release instead.
  • Loading branch information
siddhuwarrier authored Sep 13, 2023
1 parent 240f5a4 commit 5b4479d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
release:
if: github.ref_type == 'tag'
runs-on: ubuntu-latest
needs: [acceptance-test]
needs: [unit-test]
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
Expand Down
Binary file removed provider/internal/tenant/__debug_bin683841204
Binary file not shown.

0 comments on commit 5b4479d

Please sign in to comment.