From 0208ce080c5a646192f47e9782993aef3fc19e4d Mon Sep 17 00:00:00 2001 From: Pavel Dat Date: Tue, 12 Sep 2023 15:18:21 +0300 Subject: [PATCH] Modify pipeline --- .github/workflows/deploy-job.yml | 14 ++------------ setup.cfg | 2 -- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/deploy-job.yml b/.github/workflows/deploy-job.yml index 4db3e3b..1bdc430 100644 --- a/.github/workflows/deploy-job.yml +++ b/.github/workflows/deploy-job.yml @@ -58,27 +58,17 @@ jobs: needs: test steps: - uses: actions/checkout@v3 - - name: Verify Changed files - uses: tj-actions/verify-changed-files@v16 - id: verify-changed-files - with: - files: | - src/**/*.py - setup.cfg - name: Download artifacts - if: steps.verify-changed-files.outputs.files_changed == 'true' uses: actions/download-artifact@v3 with: name: built-artifacts path: dist - name: Publish package to Test PyPI - if: steps.verify-changed-files.outputs.files_changed == 'true' uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository-url: https://test.pypi.org/legacy/ - name: Publish package to PyPI - if: steps.verify-changed-files.outputs.files_changed == 'true' uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }} @@ -90,8 +80,8 @@ jobs: - uses: actions/checkout@v3 - name: Set version release run: | - VER=$(cat setup.cfg | grep version | cut -d "=" -f 2 | xargs) - COMMIT_MESSAGE=$(git log -1 --pretty=%B) + VER="$(cat setup.cfg | grep version | cut -d '=' -f 2 | xargs)" + COMMIT_MESSAGE="$(git log -1 --pretty=%B)" echo "RELEASE_VERSION=$VER" >> $GITHUB_ENV echo "COMMIT_MESSAGE=$COMMIT_MESSAGE" >> $GITHUB_ENV - name: Create release diff --git a/setup.cfg b/setup.cfg index a4ca236..3bec01a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,7 +11,6 @@ url = https://github.com/paveldat/God-s-eye [options] package_dir = =src - packages = clickjacking dns_lookup @@ -25,7 +24,6 @@ packages = ip_info_finder pwned phone_info - install_requires = requests >= 2.25.1 dnspython >= 2.2.1