Skip to content

Commit 716e865

Browse files
committed
change how files are committed
1 parent 50a0589 commit 716e865

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/package-applications.yml

+6-8
Original file line numberDiff line numberDiff 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 "[email protected]"
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/[email protected]
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 }}

0 commit comments

Comments
 (0)