From 045ffe60f2a2ef7b47c735330a74261caadd2edc Mon Sep 17 00:00:00 2001 From: himkt Date: Mon, 13 May 2024 21:46:02 +0900 Subject: [PATCH] debug: source is needed --- .github/workflows/publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2035630..b967262 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,5 +12,7 @@ jobs: steps: - uses: actions/checkout@v4 - run: curl -sSf https://rye-up.com/get | RYE_INSTALL_OPTION="--yes" bash - - run: rye build --sdist - - run: rye publish --yes --token "${{ secrets.PYPI_TOKEN }}" + - run: | + source $HOME/.rye/env + rye build --sdist + rye publish --yes --token "${{ secrets.PYPI_TOKEN }}"