diff --git a/.github/workflows/protect_master.yml b/.github/workflows/protect_master.yml deleted file mode 100644 index 6267b77..0000000 --- a/.github/workflows/protect_master.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Protect master branch - -on: - pull_request: - branches: - - master -jobs: - merge_check: - runs-on: ubuntu-latest - steps: - - name: Check if the pull request is mergeable to master - run: | - if [[ "$GITHUB_HEAD_REF" == 'development' && "$GITHUB_REPOSITORY" == 'aliparlakci/bulk-downloader-for-reddit' ]]; then exit 0; else exit 1; fi; diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 589c201..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,35 +0,0 @@ -# This workflow will upload a Python Package using Twine when a release is created -# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries - -name: Upload Python Package - -on: - release: - types: [created] - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.9' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install build setuptools wheel twine - - name: Build and publish - env: - TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} - TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - run: | - python -m build - twine upload dist/* - - - name: Upload dist folder - uses: actions/upload-artifact@v3 - with: - name: dist - path: dist/