Skip to content

Commit 56748aa

Browse files
committedDec 24, 2019
Again
1 parent b14a5d8 commit 56748aa

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed
 

‎.github/workflows/actions.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ jobs:
2121
cd "$GITHUB_WORKSPACE"
2222
- name: Check if version on pubspec.yaml was changed and if there's an entry for this new version on CHANGELOG
2323
run: |
24+
cat "${GITHUB_EVENT_PATH}" || true
25+
git fetch --prune --unshallow
26+
git diff head~1 || true
27+
2428
if test "${{ github.ref }}" = "refs/heads/master"; then
25-
git pull origin
2629
where=HEAD~$(gojq '.commits | length' "${GITHUB_EVENT_PATH}")
2730
else
28-
git fetch origin master:master
2931
where=origin/master
3032
fi
3133

‎CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CHANGELOG
22

3-
## 0.2.0+6
3+
## 0.2.0+7
44
- Testing GitHub actions
55

66
## 0.2.0

‎pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: fuzzy
2-
version: 0.2.0+6
2+
version: 0.2.0+7
33

44
authors:
55
- Igor Borges <igor@borges.dev>

0 commit comments

Comments
 (0)
Please sign in to comment.