Commit 413457f0 authored by narugo1992's avatar narugo1992
Browse files

dev(narugo): fix bug in release test

parent d0466fa1
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -35,7 +35,6 @@ jobs:
          pip install --upgrade build
      - name: Build packages
        run: |
          make download
          python -m build --sdist --wheel --outdir dist/
      - name: Publish distribution 📦 to real PyPI
        uses: pypa/gh-action-pypi-publish@master
+0 −1
Original line number Diff line number Diff line
@@ -35,7 +35,6 @@ jobs:
          pip install --upgrade build
      - name: Build packages
        run: |
          make download
          make package
          ls -al dist
      - name: Upload packed files to artifacts
+0 −3
Original line number Diff line number Diff line
@@ -45,6 +45,3 @@ docs:
	$(MAKE) -C "${DOC_DIR}" build
pdocs:
	$(MAKE) -C "${DOC_DIR}" prod

download:
	$(PYTHON) -m imgutils update
+2 −2
Original line number Diff line number Diff line
# imgutils

[![PyPI](https://img.shields.io/pypi/v/imgutils)](https://pypi.org/project/imgutils/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/imgutils)
[![PyPI](https://img.shields.io/pypi/v/dghs-imgutils)](https://pypi.org/project/dghs-imgutils/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/dghs-imgutils)
![Loc](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/deepghs/8bfaa96eaa25cc9dac54debbf22d363d/raw/loc.json)
![Comments](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/deepghs/8bfaa96eaa25cc9dac54debbf22d363d/raw/comments.json)

+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ from distutils.core import setup
from setuptools import find_packages

_MODULE_NAME = "imgutils"
_PACKAGE_NAME = 'imgutils'
_PACKAGE_NAME = 'dghs-imgutils'

here = os.path.abspath(os.path.dirname(__file__))
meta = {}