From 8fa33e9aeb966f14a536668f96fbc277aedb3db6 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Fri, 17 Feb 2023 23:05:01 +0100 Subject: [PATCH] remove with commit --- .github/workflows/create-tag.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/create-tag.yml diff --git a/.github/workflows/create-tag.yml b/.github/workflows/create-tag.yml deleted file mode 100644 index 2ace277..0000000 --- a/.github/workflows/create-tag.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Deploy -on: - workflow_dispatch: - push: - branches: - - "main" -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout Code - uses: actions/checkout@v3 - - name: Get Next Version - id: semver - uses: ietf-tools/semver-action@v1 - with: - token: ${{ secrets.PERSONAL_GITHUB_TOKEN }} - branch: main - - uses: rickstaa/action-create-tag@v1 - with: - tag: ${{ steps.semver.outputs.next }} - message: ${{ steps.semver.outputs.next }} - github_token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}