Skip to content

Commit

Permalink
Actually commit to the build repo
Browse files Browse the repository at this point in the history
  • Loading branch information
7h3kk1d committed Aug 20, 2024
1 parent 25b9135 commit 1fd5f98
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/deploy_branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,27 +60,27 @@ jobs:
- name: See the status of the git repo
run: git status
working-directory: ./server
# - name : Commit to the website aka deploy
# run: |
# git config user.name github-deploy-action
# git config user.email [email protected]
# git add -A
# git pull --no-edit
# git status
# git diff-index --quiet HEAD || (git commit -m "github-deploy-action-${BRANCH_NAME}"; git push)
# working-directory: ./server
# - name: Run Tests
# id: test
# run: |
# eval $(opam env)
# make test
# working-directory: ./source
# - name: Test Report
# uses: dorny/test-reporter@v1
# with:
# name: Test Report
# path: junit_tests*.xml
# reporter: java-junit
# fail-on-error: true
# fail-on-empty: true # Use an empty test report to detect when something failed with the test runner
# working-directory: ./source
- name : Commit to the website aka deploy
run: |
git config user.name github-deploy-action
git config user.email [email protected]
git add -A
git pull --no-edit
git status
git diff-index --quiet HEAD || (git commit -m "github-deploy-action-${BRANCH_NAME}"; git push)
working-directory: ./server
- name: Run Tests
id: test
run: |
eval $(opam env)
make test
working-directory: ./source
- name: Test Report
uses: dorny/test-reporter@v1
with:
name: Test Report
path: junit_tests*.xml
reporter: java-junit
fail-on-error: true
fail-on-empty: true # Use an empty test report to detect when something failed with the test runner
working-directory: ./source

0 comments on commit 1fd5f98

Please sign in to comment.