Update main.yml

This commit is contained in:
Madeleine 2022-05-24 15:09:12 +01:00 committed by GitHub
parent afc6dcb7dd
commit 09a38c4bf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,19 @@ jobs:
cd src cd src
zip -r ../pridefetch.zip * zip -r ../pridefetch.zip *
- name: turn into a UNIX executable - name: Turn into a UNIX executable
run: | run: |
echo '#!/usr/bin/env python' | cat - pridefetch.zip > pridefetch echo '#!/usr/bin/env python' | cat - pridefetch.zip > pridefetch
chmod +x pridefetch chmod +x pridefetch
- name: Commit files
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -m "Build executable" -a
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}