Skip to content

Commit 81b97c0

Browse files
authored
Attempt release action fix #3
1 parent a56e119 commit 81b97c0

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@v2.3.2
24-
- uses: textbook/git-checkout-submodule-action@2.1.1
24+
- name: Checkout repository and submodules
25+
uses: actions/checkout@v2
26+
with:
27+
submodules: recursive
28+
fetch-depth: 0
2529
- name: "Build binaries"
2630
id: "love-build"
2731
uses: nhartland/love-build@v1-beta2
@@ -58,8 +62,6 @@ jobs:
5862
dest: build-win32.zip
5963
# Collect commits since last release to make making the changelog easier
6064
- run: git log $(git describe --tags --abbrev=0)..HEAD --format=format:"> %s%+b" > commits.txt
61-
- name: Show commits for debug purposes
62-
run: cat commits.txt
6365
- name: Create release
6466
id: create-release
6567
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)