File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3434 env :
3535 NODE_AUTH_TOKEN : ${{github.token}}
3636
37- # provided by ChatGPT
38- - name : Convert pre-release to release
39- run : |
40- curl -X PATCH \
41- -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
42- -H "Accept: application/vnd.github.v3+json" \
43- -d '{"draft": false}' \
44- "https://api.github.com/repos/${{ github.repository }}/releases/${{ github.event.release.id }}"
45-
46- tagger :
37+ publish :
4738 permissions :
4839 contents : write
4940 needs : [build]
5344 - uses : fischerscode/tagger@v0
5445 with :
5546 prefix : v
47+ # provided by ChatGPT
48+ - name : Convert pre-release to release
49+ run : |
50+ curl -fX PATCH \
51+ -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
52+ -H "Accept: application/vnd.github.v3+json" \
53+ -d '{"draft": false}' \
54+ "https://api.github.com/repos/${{ github.repository }}/releases/${{ github.event.release.id }}"
Original file line number Diff line number Diff line change 2323 steps :
2424 - uses : actions/checkout@v3
2525 - uses : teaxyz/setup@v0
26- - run : deno task test --coverage=cov_profile
26+ - run : deno cache $(find . -name \*.ts)
27+ - run : deno task test --coverage=cov_profile --no-check
28+ # ^^ no check as we have a separate type-checking step and it’s noise here
2729 - run : deno coverage cov_profile --lcov --exclude=tests/ --output=cov_profile.lcov
2830 - uses : coverallsapp/github-action@v1
2931 with :
You can’t perform that action at this time.
0 commit comments