From 91f0dbb980510bfbe663aee9e6ec9907f1b45fca Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Wed, 13 Sep 2023 14:43:35 +0200 Subject: [PATCH] Fix typo --- .github/workflows/main.yml | 2 +- .github/workflows/publish.yml | 2 +- Makefile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 522c6ca..3e89b6b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,7 +34,7 @@ jobs: - name: Build test run: make test - name: Build package - run: make build-pkg + run: make build_pkg - uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6660643..e7ae79f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: python-version: "3.10" - name: Build distribution - run: make build-pkg + run: make build_pkg - name: Publish distribution 📦 to PyPI if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') diff --git a/Makefile b/Makefile index 59d7ae0..bf450e1 100644 --- a/Makefile +++ b/Makefile @@ -14,9 +14,9 @@ assets: build: docker-compose build web -build-pkg: +build_pkg: python -m pip install --upgrade build - python -m build + python -m build test: assets docker-compose run -v $$PWD/assets:/assets -e PYTHONWARNINGS=error -e CACHE_DIR=/assets/ web python manage.py test --keepdb --verbosity=2