From daaac771d4288309aa994b06e56672bc90b951f5 Mon Sep 17 00:00:00 2001 From: Markus Bilz Date: Mon, 11 Dec 2023 14:42:56 +0100 Subject: [PATCH] =?UTF-8?q?Improve=20gh=20actions=20=F0=9F=90=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/{.dependabot.yaml => dependabot.yaml} | 0 .github/workflows/publish.yaml | 6 +++--- pyproject.toml | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) rename .github/{.dependabot.yaml => dependabot.yaml} (100%) diff --git a/.github/.dependabot.yaml b/.github/dependabot.yaml similarity index 100% rename from .github/.dependabot.yaml rename to .github/dependabot.yaml diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 429a983..2fd2586 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -15,12 +15,12 @@ jobs: python-version: "3.x" - name: Install pypa/build run: >- - python3 -m + python -m pip install build --user - name: Build a binary wheel and a source tarball - run: python3 -m build + run: python -m build - name: Store the distribution packages uses: actions/upload-artifact@v3 with: @@ -100,7 +100,7 @@ jobs: environment: name: testpypi - url: https://test.pypi.org/p/ + url: https://test.pypi.org/p/tclf permissions: id-token: write diff --git a/pyproject.toml b/pyproject.toml index 371acbb..61f4628 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "tclf" +version = "0.0.1" authors = [ { name="Markus Bilz", email="github@markusbilz.com" }, ]