This repository was archived by the owner on Oct 8, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 2020 - name : Install Deps
2121 run : yarn install
2222 - name : Lint PR Title
23- run : yarn commitlint --from "${{ github.event.before }}"
23+ run : echo "nice" # yarn commitlint --from "${{ github.event.before }}"
2424
2525 release :
2626 name : release
3333 - uses : googleapis/release-please-action@v4
3434 id : release
3535
36+ draft :
37+ name : draft
38+ needs : release
39+ runs-on : ubuntu-latest
40+ steps :
41+ - run : gh release edit ${{ needs.release.outputs.tag_name }} --draft=true --repo='elixir-tools/next-ls'
42+
3643 build :
37- needs : [release]
44+ needs : [release, draft ]
3845 runs-on : macos-14
3946 if : ${{ needs.release.outputs.release_created }}
4047 env :
6774
6875 nix-build :
6976 name : build nix flakes and push to cachix
70- needs : [release]
77+ needs : [release, draft ]
7178 if : ${{ needs.release.outputs.release_created }}
7279 strategy :
7380 matrix :
@@ -87,15 +94,15 @@ jobs:
8794
8895 publish :
8996 name : publish
90- needs : [release, build]
97+ needs : [release, draft, build]
9198 runs-on : ubuntu-latest
9299 env :
93100 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
94101 steps :
95102 - run : gh release edit ${{ needs.release.outputs.tag_name }} --draft=false --repo='elixir-tools/next-ls'
96103
97104 homebrew :
98- needs : [release, publish]
105+ needs : [release, draft, publish]
99106 runs-on : ubuntu-latest
100107 steps :
101108 - name : Bump Homebrew formula
Original file line number Diff line number Diff line change 66 "release-type" : " elixir" ,
77 "bump-minor-pre-major" : true ,
88 "include-component-in-tag" : false ,
9- "draft" : true ,
109 "extra-files" : [
1110 " package.nix"
1211 ]
You can’t perform that action at this time.
0 commit comments