diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7be493f..281e0c1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,8 +27,6 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - - name: Run a one-line script - run: echo Hello, world! - uses: "actions/setup-python@v2" with: python-version: "3.7" @@ -43,4 +41,4 @@ jobs: - name: Test run: | . .venv/bin/activate - make test + make publish diff --git a/Makefile b/Makefile index 130079b..fc2c232 100644 --- a/Makefile +++ b/Makefile @@ -59,3 +59,6 @@ version: name: @sed -n 's/.*name = "\(.*\)".*/\1/p' pyproject.toml + +publish: + ${POETRY_BIN} publish --build