diff --git a/.github/workflows/build-release.yaml b/.github/workflows/build-release.yaml index f6da80ad..a4923cb4 100644 --- a/.github/workflows/build-release.yaml +++ b/.github/workflows/build-release.yaml @@ -5,7 +5,6 @@ on: branches: - develop - main - - 'feature/*' paths-ignore: - '.gitignore' - '**/*.env' @@ -127,7 +126,7 @@ jobs: images: ${{ env.DOCKERHUB_ORG }}/${{ env.APP_NAME }} tags: | ${{ needs.release.outputs.semantic_tag }} - ${{ github.ref == 'refs/heads/main' && 'latest' || github.ref == 'refs/heads/develop' && 'next' || startsWith(github.ref, 'refs/heads/feature/') && 'feat' }} + ${{ github.ref == 'refs/heads/main' && 'latest' || github.ref == 'refs/heads/develop' && 'next' || '' }} - name: Build Docker image uses: docker/build-push-action@v5 diff --git a/release.config.js b/release.config.js index de222739..ba00d6c4 100644 --- a/release.config.js +++ b/release.config.js @@ -2,7 +2,6 @@ module.exports = { branches: [ { name: 'main', channel: 'latest' }, // Prod { name: 'develop', channel: 'next' }, // Dev - { name: 'feature/improve-node-build', channel: 'feat' }, // Feature ], plugins: [ "@semantic-release/commit-analyzer",