From 265544e6115a718ffc8dcdc35fdf185f01f8d4c0 Mon Sep 17 00:00:00 2001 From: spencer Date: Tue, 1 Oct 2024 17:24:55 -0400 Subject: [PATCH] bug(ci): fix deploy docs tags workflow trigger. (#858) --- .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..3495c05a16 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 60728028ce..0be83e71df 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -56,6 +56,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 workflow is only triggered for full releases ([#857](https://github.com/ethereum/execution-spec-tests/pull/857)). ### 💥 Breaking Change