From 01e43b2dc4d635742da931737bb436dec3347e5f Mon Sep 17 00:00:00 2001 From: Ankit Kumar Date: Tue, 7 Dec 2021 13:12:30 +0530 Subject: [PATCH] Delete release.yml --- .github/workflows/release.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index db7f8a2..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Release - -on: - push: - branches: - - develop - -jobs: - release: - name: Release - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - uses: actions/setup-node@v1 - with: - node-version: '14.x' - - run: npm ci - - run: npm run build --if-present - - run: npx semantic-release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}