Skip to content
Merged
Show file tree
Hide file tree
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
21 changes: 14 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
submodules: true

- name: Setup Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6

- name: Install Dashing
run: go install github.com/technosophos/dashing@latest

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.13

Expand All @@ -26,12 +26,19 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt

- name: Build the docset
run: |
make
- name: Build the docsets
run: make

- name: Upload the docsets
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: docset-bundle
path: out/sublime-*.docset
if-no-files-found: error

# Do this at the end to upload the zip even if we fail
- name: Check for dirty DB dump
run: |
git status
git diff
git diff-files --quiet
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# Compiled files
*.py[cd]
__pycache__/

# Build artifacts
out/
Loading