-
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
Ibz
committed
Apr 17, 2024
1 parent
603f9d4
commit ec843a2
Showing
1 changed file
with
2 additions
and
3 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 |
---|---|---|
|
@@ -23,14 +23,13 @@ jobs: | |
- name: Generate Manifest | ||
run: node create-readme-metadata.js | ||
|
||
- name: Commit and Push | ||
- name: Push changes | ||
run: | | ||
git checkout -b generated-branch-$(date +'%Y%m%d%H%M%S') | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git add . | ||
git commit -m "Generated gallery.manifest file" || echo "No changes to commit" | ||
git push origin HEAD | ||
git push origin "${GITHUB_REF#refs/heads/}" | ||
deploy: | ||
needs: build | ||
|