Skip to content

Commit 1c050e1

Browse files
committed
Make a rolling release with commits to origin/HEAD
1 parent 53e44f0 commit 1c050e1

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,25 @@ jobs:
4242
with:
4343
name: sublime-merge.docset.tgz
4444
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

Comments
 (0)