Skip to content

Commit 377234e

Browse files
committed
fix(ci): env var fix
1 parent 61ba0fc commit 377234e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release-helper.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
id: changed-py
2626
uses: tj-actions/changed-files@v44
2727
with:
28-
files: |
29-
src/client/delphi_epidata.py
30-
src/client/packaging/pypi/**
28+
files: |
29+
src/client/delphi_epidata.py
30+
src/client/packaging/pypi/**
3131
outputs:
3232
any_changed: ${{ steps.changed-py.outputs.any_changed }}
3333

@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
python -m pip install bump2version
5050
VERSION=$(bump2version --dry-run --list patch | grep ^current_version | sed -r s,"^.*=",,)
51-
echo "version=$VERSION"
51+
echo "version=$VERSION" >> $GITHUB_OUTPUT
5252
- name: Create Release
5353
id: create_release
5454
uses: release-drafter/release-drafter@v5
@@ -114,7 +114,7 @@ jobs:
114114
uses: actions/checkout@v2
115115
- uses: actions/setup-node@v2
116116
with:
117-
node-version: '16.x'
117+
node-version: "16.x"
118118
- name: Cache Node.js modules
119119
uses: actions/cache@v2
120120
with:

0 commit comments

Comments
 (0)