From b482b9e574514e71552ff7a267cb2ff0f94ed314 Mon Sep 17 00:00:00 2001 From: hcwinsemius Date: Fri, 5 Apr 2024 15:57:58 +0200 Subject: [PATCH] adding upload of setup.sh #58 --- .github/workflows/publish-pypi.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 9101ac6..30caca9 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -59,6 +59,24 @@ jobs: python -m pip install dist/nodeorc*.whl nodeorc --version + upload-setup: + needs: test-built-dist + runs-on: ubuntu-latest + defaults: + run: + shell: bash -l {0} + steps: + - uses: actions/checkout@v3 + - name: List contents of src code + run: ls -ltrh + - name: Upload setup bash script to release + uses: svenstaro/upload-release-action@2.5.0 + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + tag: ${{ github.ref_name }} + file: setup.sh + overwrite: false + upload-to-test-pypi: needs: test-built-dist if: github.event_name == 'push'