We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eee2764 commit 8b66f39Copy full SHA for 8b66f39
1 file changed
.github/workflows/macos.yml
@@ -19,8 +19,9 @@ jobs:
19
20
- name: Build and Install via Formula
21
run: |
22
- # Create a tarball of the current repository state
23
- git archive --format=tar.gz --output=gplaces.tar.gz HEAD
+ # Create a tarball of the current repository state including submodules
+ # git archive does not include submodules, so we use tar
24
+ tar -czf gplaces.tar.gz --exclude=.git --exclude=gplaces.tar.gz .
25
SHA=$(shasum -a 256 gplaces.tar.gz | cut -d ' ' -f 1)
26
27
# Adjust formula URL and SHA to point to the local tarball
0 commit comments