-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workflow automatically creates the .zip files after a change
- Loading branch information
Showing
1 changed file
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,11 +32,12 @@ jobs: | |
run: | | ||
ls -al sphax_patch_pack/ | ||
- name: Upload zip files as artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: zipped-folders | ||
path: | | ||
sphax_patch_pack/x32-TCP-Sphax_PatchPack.zip | ||
sphax_patch_pack/x64-TCP-Sphax_PatchPack.zip | ||
sphax_patch_pack/x128-TCP-Sphax_PatchPack.zip | ||
- name: Commit and push the .zip files to the repository | ||
run: | | ||
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git add sphax_patch_pack/*.zip | ||
git commit -m "Add .zip files for patched folders" | ||
git push origin master # Make sure this pushes to the correct branch (e.g., `main` or `master`) | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |