Skip to content

Commit 4b22244

Browse files
author
Simeon Kummer
committed
Update workflow to verify resourcepack exists
1 parent f1a8cb3 commit 4b22244

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/upload-resourcepack.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,18 @@ jobs:
1111
upload-resourcepack:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: Checkout repository with LFS
14+
- name: Checkout repository
1515
uses: actions/checkout@v3
16-
with:
17-
lfs: true
16+
17+
- name: Verify resourcepack.zip exists
18+
run: |
19+
ls -la
20+
if [ -f "resourcepack.zip" ]; then
21+
echo "resourcepack.zip exists!"
22+
else
23+
echo "resourcepack.zip NOT FOUND!"
24+
exit 1
25+
fi
1826
1927
- name: Upload resourcepack as artifact
2028
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)