forked from bumble-tech/live-mosaic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michael Jordan
committed
Oct 26, 2023
1 parent
fe2f20c
commit 4001dc4
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -31,13 +31,13 @@ jobs: | |
- name: Move Output to Directory | ||
run: | | ||
mkdir distribution | ||
mv webApp/build/dist/js/productionExecutable/* distribution/ | ||
mv webApp/build/dist/js/productionExecutable/* docs/ | ||
# Commit and push the directory to a specified branch (e.g., "output-branch") | ||
- name: Commit and Push to Branch | ||
run: | | ||
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git add distribution/ | ||
git add docs/ | ||
git commit -m "Add output from build" | ||
git push -f origin HEAD:deploy-branch |