From 0e1048cad29a209ac77e826c932f2ceeb70e1d8d Mon Sep 17 00:00:00 2001 From: alberto Date: Mon, 23 Dec 2024 12:33:16 +0100 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be3e29d1f..d83ac7524 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,7 +1,7 @@ name: Release on: push: - branches: [ master ] + branches: [ fakeMaster ] jobs: release: @@ -24,13 +24,13 @@ jobs: pip install setuptools wheel twine pip install -r requirements.txt - - name: Build and publish - env: - TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} - TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - run: | - python setup.py sdist bdist_wheel - twine upload dist/* -c "${{ secrets.PYPI_COMMENT }}" + # - name: Build and publish + # env: + # TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} + # TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + # run: | + # python setup.py sdist bdist_wheel + # twine upload dist/* -c "${{ secrets.PYPI_COMMENT }}" - name: Get changelog, tag name, & release name id: variables