File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed
Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff 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- 248- target-branch : master
249+ github_token : ${{ secrets.REPO_AUTH_TOKEN }}
250+ branch : master
249251
250252 attach-to-release :
251253 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments