diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a1a103..fc0cebe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,12 +73,7 @@ jobs: - name: Create Tag if: github.head_ref == 'master' || github.head_ref == 'dev' - run: | - if [ "${{ github.head_ref }}" == "master" ]; then - git tag ${{ steps.git_version.outputs.version }} - elif [ "${{ github.head_ref }}" == "dev" ]; then - git tag ${{ steps.git_version.outputs.version }}-rc - fi + run: git tag ${{ steps.git_version.outputs.version }} - name: Push tag run: git push origin ${{ steps.git_version.outputs.version }}