From 9acdbb9ef6c6463b89061acd99e42dd61ca7f764 Mon Sep 17 00:00:00 2001 From: "matthias.gatto" Date: Mon, 16 Sep 2024 15:47:58 +0200 Subject: [PATCH] try fix ci 03 Signed-off-by: matthias.gatto --- .github/workflows/make_release_bins.yml | 26 ++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/make_release_bins.yml b/.github/workflows/make_release_bins.yml index dd4b12a..6334794 100644 --- a/.github/workflows/make_release_bins.yml +++ b/.github/workflows/make_release_bins.yml @@ -23,7 +23,17 @@ jobs: - name: make run: make appimage-bld/osc-tui-x86_64.AppImage - + + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.TOKEN }}" + automatic_release_tag: "v24.09.0" + prerelease: true + title: "Fix Release" + files: | + LICENSE + appimage-bld/osc-tui-x86_64.AppImage + - name: twine run: | python -m venv env @@ -32,18 +42,8 @@ jobs: python -m pip install --upgrade build python -m pip install --upgrade twine python -m build - twine upload --verbose dist/* + twine upload --verbose dist/osc_tui*whl + twine upload --verbose dist/osc_tui*tar.gz env: TWINE_USERNAME: "__token__" TWINE_PASSWORD: ${{ secrets.PIP_TOKEN }} - - - - uses: "marvinpinto/action-automatic-releases@latest" - with: - repo_token: "${{ secrets.TOKEN }}" - automatic_release_tag: "v24.09.0" - prerelease: true - title: "Fix Release" - files: | - LICENSE - appimage-bld/osc-tui-x86_64.AppImage