File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -51,19 +51,17 @@ jobs:
5151 name : applications
5252 path : " *.zip"
5353
54- # Configure Git
54+ # Configure Git
5555 - name : Configure Git
5656 run : |
5757 git config --global user.name "GitHub Actions"
5858 git config --global user.email "github-actions@github.com"
5959
60- - name : Commit Changes
60+ # Commit and push changes
61+ - name : Commit and Push Changes
6162 run : |
6263 git add .
6364 git commit -m "Create application.zip for new or editted folders" || echo "No application.zips created"
64-
65- - name : Push Changes
66- uses : ad-m/github-push-action@v0.6.0
67- with :
68- github_token : ${{ secrets.GITHUB_TOKEN }}
69- branch : ${{ github.ref_name }}
65+ git push origin ${{ github.ref_name }}
66+ env :
67+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments