From 400cfab2c0636dfb49867c8a1b79fc615ddcf107 Mon Sep 17 00:00:00 2001 From: Simon Priet <105607989+SimonPistache@users.noreply.github.com> Date: Thu, 13 Mar 2025 16:43:04 +0100 Subject: [PATCH] fix(#215): auto release action (#218) * ci(#215): Fix auto-release not triggered The Workflow file was using an invalid keyword "merged". The right keywork to use is "closed". * ci(#215): Fix tabs in yml config for semantic release * fix(#215): Set semantic release to trigger on push on main branch --- .github/workflows/auto-release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index c21e96c..c556404 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -2,11 +2,9 @@ name: Automatic Release run-name: Release a new version of the icon pack on PR's merging on: - pull_request: - types: - - closed + push: branches: - - 'main' + - main jobs: semantic-release: