Skip to content

Commit

Permalink
Update git config and simplify git commands in page-release workflow
Browse files Browse the repository at this point in the history
This commit makes two main changes to the .github/workflows/page-release.yml file. Firstly, the git user name has been updated to "md sadique inam" and the git checkout command has been removed. Secondly, the push command has been simplified to "git push main".
  • Loading branch information
mdsadiqueinam committed Apr 13, 2024
1 parent e353068 commit 488d229
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/page-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,10 @@ jobs:

- name: Push Wasm Assets to /docs
run: |
git config user.name "mdsadique-inam" # Replace with your name
git config user.name "md sadique inam" # Replace with your name
git config user.email "[email protected]" # Replace with your email
git checkout -b main # Create a new branch (replace with desired branch)
mv ./wasmJs/* ./docs/ # Move extracted assets to /docs folder
git add docs/ # Add the /docs folder to Git
git commit -m "Update Wasm assets from build"
git push origin main # Push the new branch
git push main # Push the new branch

0 comments on commit 488d229

Please sign in to comment.