Skip to content

Commit d4223e5

Browse files
committed
adjust yarn plugin filter
Signed-off-by: Vincenzo Scamporlino <[email protected]>
1 parent d145a45 commit d4223e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ jobs:
9898
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
9999
- name: Create new diffs
100100
run: |
101+
mkdir diffs
101102
for version in $(curl -s https://raw.githubusercontent.com/backstage/upgrade-helper-diff/master/releases.json | jq -r 'to_entries | .[] | .value.createApp // .key'); do
102103
echo "Creating diffs between version $version and $NEW_VERSION"
103104
git diff -U1 origin/release/$version..origin/release/$NEW_VERSION > diffs/$version..$NEW_VERSION.diff
@@ -115,7 +116,7 @@ jobs:
115116
run: git checkout -b release-diff/v${RELEASE_VERSION}
116117
- name: Create new diffs for yarn plugin
117118
run: |
118-
for version in $(curl -s https://raw.githubusercontent.com/backstage/upgrade-helper-diff/master/releases-yarn-plugin.json | jq -r 'to_entries | .[] | .value.createApp // .key'); do
119+
for version in $(curl -s https://raw.githubusercontent.com/backstage/upgrade-helper-diff/master/releases-yarn-plugin.json | jq -r 'to_entries |.[] | .key'); do
119120
echo "Creating yarn-plugin diffs between version $version and $RELEASE_VERSION"
120121
git diff -U1 origin/release/yarn-plugin/$version..origin/release/yarn-plugin/$RELEASE_VERSION > diffs/$version..$RELEASE_VERSION.diff
121122
done

0 commit comments

Comments
 (0)