From 0f9940c8952199901627f3ee628a07f5013e4c08 Mon Sep 17 00:00:00 2001 From: Towa <30366556+towan912@users.noreply.github.com> Date: Wed, 4 Sep 2024 10:22:26 +0900 Subject: [PATCH] [add] workflow.yml --- .github/workflows/workflow.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/workflow.yml diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..258e9f7 --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,14 @@ +jobs: + pypi-publish: + name: upload release to PyPI + runs-on: ubuntu-latest + # Specifying a GitHub environment is optional, but strongly encouraged + environment: release + permissions: + # IMPORTANT: this permission is mandatory for trusted publishing + id-token: write + steps: + # retrieve your distributions here + + - name: Publish package distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1