Skip to content

Commit 042735d

Browse files
authored
fix: deployment triggers (#1209)
1 parent 87aabbd commit 042735d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/deploy-metric-config-parser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
if git diff origin/main HEAD~1 -- ./lib/metric-config-parser/pyproject.toml | grep '\+version'
4040
then
4141
echo "Found changes to package version dir, proceeding with deployment."
42-
echo "proceed=true" >> "GITHUB_OUTPUT"
42+
echo "proceed=true" >> "$GITHUB_OUTPUT"
4343
else
4444
echo "No changes in package version. Skipping metric-config-parser deployment."
45-
echo "proceed=false" >> "GITHUB_OUTPUT"
45+
echo "proceed=false" >> "$GITHUB_OUTPUT"
4646
fi
4747
4848
build-metric-config-parser:

lib/metric-config-parser/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "mozilla-metric-config-parser"
7-
version = "2025.10.1"
7+
version = "2025.11.1"
88
authors = [{ name = "Mozilla Corporation", email = "[email protected]" }]
99
description = "Parses metric configuration files."
1010
readme = "README.md"

0 commit comments

Comments
 (0)