Skip to content

Commit 809c717

Browse files
committed
changes to test triggers
1 parent 7dbfb7e commit 809c717

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
push:
88
branches:
99
- main
10+
- 1150-deploy-triggers
1011
paths:
1112
- 'lib/metric-config-parser/pyproject.toml'
1213

@@ -36,7 +37,7 @@ jobs:
3637
- id: version_change
3738
name: Check for package version change in last commit before proceeding.
3839
run: |
39-
if git diff origin/main HEAD~1 -- ./lib/metric-config-parser/pyproject.toml | grep '\+version'
40+
if git diff origin/main HEAD -- ./lib/metric-config-parser/pyproject.toml | grep '\+version'
4041
then
4142
echo "Found changes to package version dir, proceeding with deployment."
4243
echo "proceed=true" >> "$GITHUB_OUTPUT"
@@ -87,5 +88,8 @@ jobs:
8788
with:
8889
name: release-dist
8990
path: dist/
90-
- name: Publish to PyPi
91-
uses: pypa/gh-action-pypi-publish@release/v1
91+
# - name: Publish to PyPi
92+
# uses: pypa/gh-action-pypi-publish@release/v1
93+
- name: Test Publish
94+
run: |
95+
echo "Would publish here"

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)