Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,25 @@ jobs:
with:
name: sublime-merge.docset.tgz
path: out/sublime-merge.docset.tgz


rolling-release:
if: ${{ github.ref_name == 'master' && github.repository == 'SublimeText/sublime-text-docset' }}
needs: build
runs-on: ubuntu-latest

steps:
- name: Download the docsets
uses: actions/download-artifact@v5

- name: Update rolling prerelease
uses: ncipollo/release-action@v1.15.0
with:
name: Rolling release draft
draft: true
allowUpdates: true
tag: draft-release
body: |-
Extract the archive to a `sublime-text.docset` folder and install
it with the instructions in the repo's ReadMe.
artifacts: sublime-*.docset.tgz
Loading