fix(pkgbuild): add gcc as missing dep in pkgbuild-git (fix #4) #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish AUR (codegraph-rs-git) | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - packaging/aur/codegraph-rs-git/PKGBUILD | |
| permissions: | |
| contents: read | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Publish to AUR | |
| uses: KSXGitHub/github-actions-deploy-aur@v4.1.3 | |
| with: | |
| pkgname: codegraph-rs-git | |
| pkgbuild: packaging/aur/codegraph-rs-git/PKGBUILD | |
| commit_username: ${{ secrets.AUR_USERNAME }} | |
| commit_email: ${{ secrets.AUR_EMAIL }} | |
| ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | |
| commit_message: "Update PKGBUILD" | |
| ssh_keyscan_types: rsa,ecdsa,ed25519 |