From a1515ac7b8c10e1fa6186b2dcde6904b1df5fe10 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Sun, 26 Nov 2023 09:30:19 +0100 Subject: [PATCH] ci(beta): adapt workflow with new worker build --- .github/workflows/beta-release.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/beta-release.yml b/.github/workflows/beta-release.yml index 8b45c2ac..1d3701c3 100644 --- a/.github/workflows/beta-release.yml +++ b/.github/workflows/beta-release.yml @@ -132,24 +132,6 @@ jobs: name: cli path: packages/cli/dist - create-tag: - needs: [build-images, build-cli] - runs-on: ubuntu-latest - outputs: - tagname: ${{ steps.create_tag.outputs.tagname }} - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Create Tag - id: create_tag - uses: Klemensas/action-autotag@stable - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - tag_prefix: 'v' - tag_suffix: '-beta.${{ github.event.inputs.tag }}' - publish-release: runs-on: ubuntu-latest needs: [create-tag, build-images, build-cli, build-worker]