Update AUR #16
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: Update AUR | |
| on: | |
| workflow_run: | |
| workflows: ["Release Player"] | |
| types: [completed] | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: "Version to publish (e.g., 1.23.2)" | |
| required: true | |
| jobs: | |
| update-bin: | |
| if: >- | |
| github.event_name == 'workflow_dispatch' || | |
| github.event.workflow_run.conclusion == 'success' | |
| runs-on: ubuntu-latest | |
| container: | |
| image: archlinux:latest | |
| steps: | |
| - name: Install dependencies | |
| run: pacman -Syu --noconfirm base-devel git openssh curl | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install SSH key | |
| uses: shimataro/ssh-key-action@v2 | |
| with: | |
| key: ${{ secrets.AUR_SSH_KEY }} | |
| known_hosts: ${{ secrets.AUR_KNOWN_HOSTS }} | |
| - name: Update nuclear-player-bin | |
| run: | | |
| if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then | |
| VERSION="${{ github.event.inputs.version }}" | |
| else | |
| TAG="${{ github.event.workflow_run.head_branch }}" | |
| VERSION="${TAG#player@}" | |
| fi | |
| ./aur/update-aur.sh --version "${VERSION}" |