From 331c57a952632a1b6aac7fc8367c29d72c8e7022 Mon Sep 17 00:00:00 2001 From: Michael Jerger Date: Thu, 17 Aug 2023 18:25:59 +0200 Subject: [PATCH] gitlab ci is no longer used --- .github/workflows/stable.yml | 42 ---------------------------------- .github/workflows/unstable.yml | 30 ------------------------ 2 files changed, 72 deletions(-) delete mode 100644 .github/workflows/stable.yml delete mode 100644 .github/workflows/unstable.yml 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