Skip to content

Commit 5d7223d

Browse files
authored
Fix YAML syntax core-release.yml (#3467)
1 parent b29e22a commit 5d7223d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/core-release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,19 @@ jobs:
1616
submodules: recursive
1717

1818
- name: Create maplibre-native-headers.tar.gz
19-
run: tar czf maplibre-native-headers.tar.gz \
20-
include \
21-
vendor/maplibre-native-base/deps/variant/include \
22-
vendor/maplibre-native-base/deps/geometry.hpp/include
19+
run: |
20+
tar czf maplibre-native-headers.tar.gz \
21+
include \
22+
vendor/maplibre-native-base/deps/variant/include \
23+
vendor/maplibre-native-base/deps/geometry.hpp/include
2324
- name: Create Release
2425
run: |
2526
gh release create core-${{ github.sha }} \
2627
--draft=false \
2728
--prerelease=false \
2829
--latest=false \
2930
--title "core-${{ github.sha }}" \
30-
maplibre-native-headers.tar.gz LICENSE.core.md
31+
maplibre-native-headers.tar.gz LICENSES.core.md
3132
env:
3233
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3334

0 commit comments

Comments
 (0)