chore: remove tagging from test workflow

Tagging/Releasing will be refactored so it can be executed manually via `workflow_disaptch`.
This commit is contained in:
Enrico Stahn 2020-11-21 00:23:48 +11:00 committed by GitHub
parent a7273638ad
commit 78a58981fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 }}