Skip to content

Commit

Permalink
Run build-ext in publish to include missing colorsets
Browse files Browse the repository at this point in the history
  • Loading branch information
danirus committed Sep 2, 2023
1 parent 4f30ca5 commit bdf68be
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,29 @@ jobs:
id-token: write
steps:
- uses: actions/checkout@v2

- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/setup-python@v3
with:
python-version: "3.11"
python-version: "3.11"
- name: Install build
run: pip install build
- name: Build package
run: python -m build

- run: npm install
- run: make build-ext

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1.8
with:
Expand Down

0 comments on commit bdf68be

Please sign in to comment.