1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-09-01 04:22:28 +02:00

Update ci.yml

This commit is contained in:
Pomax
2020-06-07 17:06:08 -07:00
committed by GitHub
parent f17122e84f
commit 211cf1c181

View File

@@ -61,13 +61,14 @@ jobs:
echo "running build..." echo "running build..."
npm run ci:build npm run ci:build
- name: Push changes - name: Commit changes
run: | run: |
echo "forming commit..." echo "forming commit..."
git remote add primer git@github.com:Pomax/BezierInfo-2.git
git config --local user.email "action@github.com" git config --local user.email "action@github.com"
git config --local user.name "Bezierinfo CI" git config --local user.name "Bezierinfo CI"
git checkout -b ci-test git commit -m "Automated build" -a
git add -A
git commit -m "Automated build" - name: Push changes
git push primer ci-test uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}