From 78a58981fa6d6fa73c13f29958dbb940f52586ae Mon Sep 17 00:00:00 2001 From: Enrico Stahn Date: Sat, 21 Nov 2020 00:23:48 +1100 Subject: [PATCH] chore: remove tagging from test workflow Tagging/Releasing will be refactored so it can be executed manually via `workflow_disaptch`. --- .github/workflows/test.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 733bc45..5e52b7c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -76,27 +76,3 @@ jobs: with: image: "hipages/php-fpm_exporter:latest" fail-build: true - - tag: - name: Tag - runs-on: ubuntu-latest - needs: [lint, test, image-scan] - if: github.ref == 'refs/heads/master' - steps: - - - name: Setup Node.js for use with actions - uses: actions/setup-node@v2.1.2 - - - name: Checkout - uses: actions/checkout@v2 - - - name: Unshallow - run: git fetch --prune --unshallow - - - name: Install semantic-release - run: yarn global add --no-progress --non-interactive "semantic-release" "@semantic-release/exec" - - - name: Run semantic-release - run: $(yarn global bin)/semantic-release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}