diff --git a/.github/workflows/stable.yml b/.github/workflows/stable.yml index 3426896..6b08b75 100644 --- a/.github/workflows/stable.yml +++ b/.github/workflows/stable.yml @@ -8,40 +8,35 @@ jobs: build: name: stable build runs-on: ubuntu-latest - - jobs: - build: - name: build&upload - 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 pybuilder ddadevops deprecation setuptools - - - name: build stable release - env: - TWINE_USERNAME: dda - TWINE_PASSWORD: ${{ secrets.PYPI_DDA }} - run: | - pyb -P version=${{ github.ref }} publish upload + 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 pybuilder ddadevops deprecation setuptools - - 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 + - name: build stable release + env: + TWINE_USERNAME: dda + 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/build.py b/build.py index 233d306..79c3d38 100644 --- a/build.py +++ b/build.py @@ -28,7 +28,7 @@ use_plugin("python.distutils") default_task = "publish" name = "ddadevops" -version = "0.8.10.dev" +version = "0.8.11.dev" summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud" description = __doc__ authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]