From 8ea8f90c55086c8dddc8dcf0fbb0e92ccfa8bf22 Mon Sep 17 00:00:00 2001 From: Taylor Smock Date: Wed, 22 Feb 2023 12:38:00 -0700 Subject: [PATCH] Only run release code on code compiled for specific JOSM revision Signed-off-by: Taylor Smock --- .github/workflows/ant.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml index 6053f7c..59d8d64 100644 --- a/.github/workflows/ant.yml +++ b/.github/workflows/ant.yml @@ -23,6 +23,6 @@ jobs: with: josm-revision: ${{ matrix.josm-revision }} plugin-jar-name: 'mapwithai' - perform-revision-tagging: ${{ github.repository == 'JOSM/MapWithAI' && github.ref_type == 'branch' && github.ref_name == 'master' && github.event_name != 'schedule' && github.event_name != 'pull_request' }} + perform-revision-tagging: ${{ github.repository == 'JOSM/MapWithAI' && github.ref_type == 'branch' && github.ref_name == 'master' && github.event_name != 'schedule' && github.event_name != 'pull_request' && matrix.josm-revision == 'r18589' }} secrets: inherit