diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index aed75448..ee70a87b 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -59,20 +59,6 @@ jobs: - name: Set Git user as GitHub actions run: git config --global user.email "actions@github.com" && git config --global user.name "github-actions" - - name: Create Continuous Deployment - Feature Branch - if: steps.get_branch.outputs.branch != 'master' && !inputs.production_release - run: | - poetry run semantic-release \ - -v DEBUG \ - --prerelease \ - --patch \ - --define=prerelease_tag=beta+${{ steps.get_branch.outputs.branch }} \ - --define=branch=${{ steps.get_branch.outputs.branch }} \ - publish - gh release edit --prerelease "$(git describe $(git rev-list --tags --max-count=1))" - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Create Continuous Deployment - Beta (non-prod) if: steps.get_branch.outputs.branch == 'master' && !inputs.production_release run: |