Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
osamajandali committed Sep 20, 2023
1 parent 4c376dd commit d5e771e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,18 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Copy SPEC.md from dev to webpage
run: |
cp dev/SPEC.md webpage/SPEC.md
- name: Switch to the webpage branch and pull latest changes from main
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git checkout webpage
git pull origin dev
git add SPEC.md
git commit -m "Update SPEC.md"
git pull origin webpage
- name: Install Node.js
uses: actions/setup-node@v2
Expand Down

0 comments on commit d5e771e

Please sign in to comment.