From 0209bcdf7d78a3b066aa0eff2c9e09de7f61ddea Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Wed, 26 Jun 2024 13:37:29 +0300 Subject: [PATCH] ci: Use release/v1 branch for build.yml Fixes #106 [skip ci] --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 41d02e4..b3e65c7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,13 +13,13 @@ jobs: - uses: actions/checkout@main - uses: actions/setup-python@main with: - python-version: '3.x' + python-version: "3.x" - uses: actions/cache@main with: path: ${{ env.pythonLocation }} key: build-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml', 'setup.*') }} - run: pip wheel . --no-deps -w dist - - uses: pypa/gh-action-pypi-publish@master + - uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_TOKEN }}