From a243a2f5a31fc6cab9d129550d3ae1cd1002cfdb Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Sat, 8 Oct 2022 19:19:01 -0700 Subject: [PATCH 1/3] Set alt publish url Workaround for https://github.com/python-poetry/poetry/issues/3167 --- .github/workflows/publish.yml | 5 ++++- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7aa8e7c..463506b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,7 +19,10 @@ jobs: pureskillgg_username: ${{ secrets.JFROG_USER }} pureskillgg_password: ${{ secrets.JFROG_API_KEY }} - name: Publish - run: poetry publish --build --skip-existing -u $USERNAME -p $PASSWORD -r pureskillgg + run: | + poetry config repositories.jfrog $REPOSITORY + poetry publish --build --skip-existing -u $USERNAME -p $PASSWORD -r jfrog env: USERNAME: ${{ secrets.JFROG_USER }} PASSWORD: ${{ secrets.JFROG_API_KEY }} + REPOSITORY: https://pureskillgg.jfrog.io/artifactory/api/pypi/private diff --git a/pyproject.toml b/pyproject.toml index d7c76b5..87cfe80 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ repository = "https://github.com/pureskillgg/makenew-pypackage" [[tool.poetry.source]] name = "pureskillgg" -url = "https://pureskillgg.jfrog.io/artifactory/api/pypi/private" +url = "https://pureskillgg.jfrog.io/artifactory/api/pypi/private/simple" [tool.poetry.dependencies] python = "^3.9" From e6bae453cf3d46fba59c309f11de4c368a10ad65 Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Sat, 8 Oct 2022 19:23:40 -0700 Subject: [PATCH 2/3] Update lockfile --- poetry.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 641e4fd..46d5ac5 100644 --- a/poetry.lock +++ b/poetry.lock @@ -340,7 +340,7 @@ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" [metadata] lock-version = "1.1" python-versions = "^3.9" -content-hash = "86e01b25bd6797dac0cf876efd0c22478cb1294c05c5bda3c5640aecfb023f8d" +content-hash = "9d46e351adc19a9e12f4b44691946b6b5e16258adfd05e385d6790f6d17d4a00" [metadata.files] astroid = [ From 5a44a28ac8ce9bff784ae6f8c1840071cd335dcc Mon Sep 17 00:00:00 2001 From: "PureSkill.gg" Date: Sun, 9 Oct 2022 02:24:24 +0000 Subject: [PATCH 3/3] 1.19.4 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 87cfe80..4e2e376 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pureskillgg-makenew-pypackage" -version = "1.19.3" +version = "1.19.4" description = "Package skeleton for a Python module." authors = ["PureSkill.gg "] license = "SEE LICENSE IN LICENSE.txt"