From 944fee4603ec0ea392a452f6e537411dad8ee1b3 Mon Sep 17 00:00:00 2001 From: rlespinasse Date: Thu, 16 Jun 2022 22:09:37 +0200 Subject: [PATCH] ci: remove release dry-run --- .github/workflows/release-dryrun.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/release-dryrun.yml diff --git a/.github/workflows/release-dryrun.yml b/.github/workflows/release-dryrun.yml deleted file mode 100644 index 8dd6898..0000000 --- a/.github/workflows/release-dryrun.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: "[v3] Release DryRun" - -on: - push: - branches-ignore: - - v*.x - -jobs: - release-dryrun: - runs-on: ubuntu-latest - steps: - - uses: technote-space/auto-cancel-redundant-workflow@v1 - - uses: actions/checkout@v2 - - run: npm install - - run: npm run all - - uses: ./ - - uses: cycjimmy/semantic-release-action@v2 - with: - branches: | - [ - "${{ env.GITHUB_REF_NAME }}" - ] - dry_run: true - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}