Gate style.debug write behind debug_assertions #4
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 | |
| on: | |
| push: | |
| branches: [master] | |
| workflow_dispatch: | |
| # Avoid two concurrent AUR pushes stepping on each other when commits land | |
| # in quick succession. | |
| concurrency: | |
| group: aur-publish | |
| cancel-in-progress: false | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Publish alacritree-git to AUR | |
| # v4.x fixes a runuser/-c → bash --command translation bug that hit | |
| # v2.7.2; inputs are unchanged. | |
| uses: KSXGitHub/github-actions-deploy-aur@v4.1.3 | |
| with: | |
| pkgname: alacritree-git | |
| pkgbuild: packaging/aur/alacritree-git/PKGBUILD | |
| commit_username: ${{ github.actor }} | |
| commit_email: ${{ github.actor }}@users.noreply.github.com | |
| ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | |
| commit_message: "Sync from master @ ${{ github.sha }}" | |
| ssh_keyscan_types: rsa,ecdsa,ed25519 | |
| force_push: false | |
| allow_empty_commits: false |