chore(release): bump version to 1.1.0 for desktop UI redesign #50
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 to AUR | |
| on: | |
| push: | |
| branches: [ main ] | |
| release: | |
| types: [ published ] | |
| workflow_dispatch: | |
| jobs: | |
| aur-publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Publish bearwave-git to AUR | |
| uses: KSXGitHub/github-actions-deploy-aur@v3 | |
| with: | |
| pkgname: bearwave-git | |
| pkgbuild: ./PKGBUILD | |
| commit_username: ${{ secrets.AUR_USERNAME }} | |
| commit_email: moin@nerdbear.de | |
| ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | |
| commit_message: "Update AUR package via GitHub Actions" | |
| ssh_keyscan_types: rsa,ecdsa,ed25519 |