Attempt to get the Action working.
parent
336dff2ed8
commit
d2ac53f229
|
@ -17,6 +17,9 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
- uses: actions/checkout@master
|
- 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
|
# set up NodeJS
|
||||||
- uses: actions/setup-node@master
|
- uses: actions/setup-node@master
|
||||||
|
@ -35,11 +38,9 @@ jobs:
|
||||||
|
|
||||||
- name: Commit files
|
- name: Commit files
|
||||||
run: |
|
run: |
|
||||||
git config --global user.name "github-actions[bot]"
|
git config --local user.email "action@github.com"
|
||||||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
git config --local user.name "GitHub Action"
|
||||||
|
git commit -m "New build of the Editor" -a
|
||||||
git add -A
|
|
||||||
git commit -m "New build of the Editor"
|
|
||||||
- name: Push changes
|
- name: Push changes
|
||||||
uses: ad-m/github-push-action@master
|
uses: ad-m/github-push-action@master
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue