diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 309c5e3..70e3be5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,6 @@ name: Build distribution -on: [push, pull_request, workflow_dispatch] +on: [workflow_dispatch] jobs: test: @@ -9,8 +9,6 @@ jobs: steps: - name: Checkout source uses: actions/checkout@v2 - with: - fetch-depth: 0 - name: Set up Python 3.11 uses: actions/setup-python@v1 @@ -29,6 +27,6 @@ jobs: run: poetry build - name: Publish package to PyPI - if: github.repository == 'factryflow/factryengine' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + # if: github.repository == 'factryflow/factryengine' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags') run: poetry publish --verbose