diff --git a/.github/workflows/stable.yml b/.github/workflows/stable.yml deleted file mode 100644 index 0436fda..0000000 --- a/.github/workflows/stable.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: stable -on: - push: - tags: - - '[0-9]+.[0-9]+.[0-9]+' - -jobs: - build: - name: stable build - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Use python 3.x - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - - name: install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - - name: build stable release - env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_DDA }} - run: | - pyb -P version=${{ github.ref }} publish upload - - - name: Create GH Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - draft: false - prerelease: false - \ No newline at end of file diff --git a/.github/workflows/unstable.yml b/.github/workflows/unstable.yml deleted file mode 100644 index d7fd8b4..0000000 --- a/.github/workflows/unstable.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: unstable -on: - push: - tags: - - '![0-9]+.[0-9]+.[0-9]+' - -jobs: - build: - name: unstable - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Use python 3.x - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - - name: install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - - name: build unstable release - env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_DDA }} - run: | - pyb publish upload