File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,13 @@ jobs:
21
21
cd "$GITHUB_WORKSPACE"
22
22
- name : Check if version on pubspec.yaml was changed and if there's an entry for this new version on CHANGELOG
23
23
run : |
24
+ cat "${GITHUB_EVENT_PATH}" || true
25
+ git fetch --prune --unshallow
26
+ git diff head~1 || true
27
+
24
28
if test "${{ github.ref }}" = "refs/heads/master"; then
25
- git pull origin
26
29
where=HEAD~$(gojq '.commits | length' "${GITHUB_EVENT_PATH}")
27
30
else
28
- git fetch origin master:master
29
31
where=origin/master
30
32
fi
31
33
Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
- ## 0.2.0+6
3
+ ## 0.2.0+7
4
4
- Testing GitHub actions
5
5
6
6
## 0.2.0
Original file line number Diff line number Diff line change 1
1
name : fuzzy
2
- version : 0.2.0+6
2
+ version : 0.2.0+7
3
3
4
4
authors :
5
5
- Igor Borges <igor@borges.dev>
You can’t perform that action at this time.
0 commit comments