We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e44f0 commit 1c050e1Copy full SHA for 1c050e1
1 file changed
.github/workflows/build.yml
@@ -42,3 +42,25 @@ jobs:
42
with:
43
name: sublime-merge.docset.tgz
44
path: out/sublime-merge.docset.tgz
45
+
46
47
+ rolling-release:
48
+ needs: build
49
+ runs-on: ubuntu-latest
50
51
+ steps:
52
+ - name: Download the docsets
53
+ uses: actions/download-artifact@v5
54
55
+ - name: Update rolling prerelease
56
+ if: ${{ github.ref_name == 'master' && github.repository == 'SublimeText/sublime-text-docset' }}
57
+ uses: ncipollo/release-action@v1.15.0
58
+ with:
59
+ name: Rolling release draft
60
+ draft: true
61
+ allowUpdates: true
62
+ tag: draft-release
63
+ body: |-
64
+ Extract the archive to a `sublime-text.docset` folder and install
65
+ it with the instructions in the repo's ReadMe.
66
+ artifacts: sublime-*.docset.tgz
0 commit comments