Attempt to get the Action working.

master
Marcus Bakker 2020-07-16 15:58:38 +02:00 committed by GitHub
parent 336dff2ed8
commit d2ac53f229
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -17,6 +17,9 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@master
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
# set up NodeJS
- uses: actions/setup-node@master
@ -35,11 +38,9 @@ jobs:
- name: Commit files
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add -A
git commit -m "New build of the Editor"
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m "New build of the Editor" -a
- name: Push changes
uses: ad-m/github-push-action@master
with: