From a423cae9af32e9ef864c55ca14e125ce1b9e0825 Mon Sep 17 00:00:00 2001 From: wjmcat <1435130236@qq.com> Date: Tue, 14 Jul 2020 16:34:06 +0800 Subject: [PATCH] update workflow --- .github/workflows/pypi.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 62cfd60..6e512d0 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -21,12 +21,14 @@ jobs: with: python-version: '3.x' - name: Install dependencies - run: make install + run: | + make install test: runs-on: ubuntu-latest steps: - - run: make test + - run: | + make test deploy: runs-on: ubuntu-latest @@ -35,6 +37,4 @@ jobs: env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - run: | - make dist - make publish + run: make dist & make publish -- GitLab