From 78c14040007a33180f5fddf270aa155136ba87c2 Mon Sep 17 00:00:00 2001 From: Derick M <58572875+TurtIeSocks@users.noreply.github.com> Date: Tue, 6 Feb 2024 00:29:54 -0500 Subject: [PATCH 1/2] fix: run even when prev is skipped --- .github/workflows/main.yml | 3 ++- .github/workflows/sentry.yml | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c5916af85..0e2de55b1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,8 @@ jobs: release: uses: ./.github/workflows/release.yml needs: [config, locales] + if: always() docker: - if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository + if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository) && always() uses: ./.github/workflows/docker.yml needs: [config, locales] diff --git a/.github/workflows/sentry.yml b/.github/workflows/sentry.yml index 1d5931399..0621220c0 100644 --- a/.github/workflows/sentry.yml +++ b/.github/workflows/sentry.yml @@ -1,5 +1,7 @@ name: Sentry -on: release +on: + release: + types: [created, published] jobs: sentry: From 2d2d0f51e67638dd2eab83c21cad98f9d7cf3224 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 6 Feb 2024 05:32:20 +0000 Subject: [PATCH 2/2] chore(release): v1.29.6 [skip ci] ## [1.29.6](https://github.com/WatWowMap/ReactMap/compare/v1.29.5...v1.29.6) (2024-02-06) ### Bug Fixes * run even when prev is skipped ([78c1404](https://github.com/WatWowMap/ReactMap/commit/78c14040007a33180f5fddf270aa155136ba87c2)) --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11732ee94..0071d6434 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.29.6](https://github.com/WatWowMap/ReactMap/compare/v1.29.5...v1.29.6) (2024-02-06) + + +### Bug Fixes + +* run even when prev is skipped ([78c1404](https://github.com/WatWowMap/ReactMap/commit/78c14040007a33180f5fddf270aa155136ba87c2)) + ## [1.29.5](https://github.com/WatWowMap/ReactMap/compare/v1.29.4...v1.29.5) (2024-02-06) diff --git a/package.json b/package.json index 76f041929..85e160f72 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "reactmap", - "version": "1.29.5", + "version": "1.29.6", "private": true, "description": "React based frontend map.", "license": "MIT",