From 4d4bc49d2297016bf8939dc0dec07c67858cf40e Mon Sep 17 00:00:00 2001 From: spencer-tb Date: Tue, 1 Oct 2024 16:14:04 -0400 Subject: [PATCH] bug(ci): fix deploy docs tags workflow trigger. --- .github/workflows/docs_tags.yaml | 2 +- docs/CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs_tags.yaml b/.github/workflows/docs_tags.yaml index 796c42ac5b..1efe589f81 100644 --- a/.github/workflows/docs_tags.yaml +++ b/.github/workflows/docs_tags.yaml @@ -3,7 +3,7 @@ name: Deploy Docs Tags on: push: tags: - - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10, v0.1.1a1 + - "v[0-9]*.[0-9]*.[0-9]*" # Push events to matching v*, i.e. v1.0, v20.15.10, v0.1.1a1 jobs: deploy: diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index e462647023..f3c0b48171 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -57,6 +57,7 @@ Test fixtures for use by clients are available for each release on the [Github r - 🔀 Simplify Python project configuration and consolidate it into `pyproject.toml` ([#764](https://github.com/ethereum/execution-spec-tests/pull/764)). - 🔀 Created `pytest_plugins.concurrency` plugin to sync multiple `xdist` processes without using a command flag to specify the temporary working folder ([#824](https://github.com/ethereum/execution-spec-tests/pull/824)) - 🔀 Move pytest plugin `pytest_plugins.filler.solc` to `pytest_plugins.solc.solc` ([#823](https://github.com/ethereum/execution-spec-tests/pull/823)). +- 🐞 Asserts that the deploy docs tags ci workflow is only triggered for full releases ([#857](https://github.com/ethereum/execution-spec-tests/pull/857)). ### 💥 Breaking Change