Skip to content

Commit f212862

Browse files
author
Tim Schneeberger
authored
Update package-deb.yml
1 parent aa9a22a commit f212862

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.github/workflows/package-deb.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -236,16 +236,18 @@ jobs:
236236
gpg --default-key "${EMAIL}" -abs -o - Release > Release.gpg
237237
gpg --default-key "${EMAIL}" --clearsign -o - Release > InRelease
238238
239-
- name: Push to PPA
240-
uses: cpina/github-action-push-to-another-repository@main
241-
env:
242-
API_TOKEN_GITHUB: ${{ secrets.REPO_AUTH_TOKEN }}
239+
- name: Commit files
240+
run: |
241+
git config --local user.email "[email protected]"
242+
git config --local user.name "Tim Schneeberger"
243+
git add .
244+
git commit -m "Update JamesDSP packages" -a
245+
246+
- name: Push changes
247+
uses: ad-m/github-push-action@master
243248
with:
244-
source-directory: '.'
245-
destination-github-username: 'ThePBone'
246-
destination-repository-name: 'PPA-Repository'
247-
user-email: [email protected]
248-
target-branch: master
249+
github_token: ${{ secrets.REPO_AUTH_TOKEN }}
250+
branch: master
249251

250252
attach-to-release:
251253
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)