Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: fixing zip step #38

Merged
merged 15 commits into from
Oct 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/release-creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,13 @@ jobs:
shell: bash

- name: Install Git LFS
if: ${{ steps.release.outputs.release_created }}
run: |
git lfs install
shell: bash

- name: Pull Large Files from Git LFS
if: ${{ steps.release.outputs.release_created }}
run: |
git lfs pull
shell: bash
Expand All @@ -47,7 +49,7 @@ jobs:
run: |
cd ${{github.workspace}}/mod_files
ls -a
zip -r -j mod_files.zip ./Mods
zip -r mod_files.zip Mods
cd ../
mv ./mod_files/mod_files.zip ./publish/mod_files.zip
shell: bash
Expand Down
Loading