Skip to content

Commit

Permalink
ci: Fix tailwind releases (#41)
Browse files Browse the repository at this point in the history
* fix: Tailwind deployment

* ci: Fix tailwind releases
  • Loading branch information
adinhodovic committed Sep 27, 2022
1 parent f035dd4 commit b4579d1
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 13 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -57,10 +57,22 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: 3.9

- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
npm install
- name: Build Tailwind CSS
run: |
npm run build
- name: Publish pip packages with tox
run: tox -e release
env:
Expand Down
20 changes: 10 additions & 10 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "wagtail-code-blog"
version = "0.3.1"
version = "0.3.3"
license = "MIT"
description = "A wagtail code blog"
authors = ["Dani Hodovic <dani.hodovic@gmail.com>"]
Expand Down Expand Up @@ -53,14 +53,14 @@ django-stubs = "^1.4.0"
black = "22.3.0"
mypy = "^0.761"
beautifulsoup4 = "^4.6.0"
django-extensions = "^2.2.8"
django-extensions = "^3.1.5"
wagtail-foliage = "^0.1.1"
isort = "^5.7.0"
pudb = "^2019.2"
pylint = "^2.7.2"
pylint-django = "^2.0.14"
werkzeug = "^1.0.0"
wagtail-markdown = "^0.7.0"
wagtail-markdown = "^0.9.0"
tox = "^3.14.5"
django-browser-reload = "^1.3.0"

Expand Down

0 comments on commit b4579d1

Please sign in to comment.