diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 24eec2ed1..3e14d5eb2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -147,3 +147,22 @@ jobs: body_path: RELEASE.md env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + aur_release: + runs-on: ubuntu-latest + name: Create AUR release + needs: github_release # The -bin version downloads and shasums it + steps: + - name: Build | Publish AUR package + uses: ATiltedTree/create-aur-release@v1 + with: + package_name: starship + commit_username: "Starship Bot" + commit_email: starship.bot.noreply@gmail.com + ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} + - name: Build | Publish AUR package (-bin version) + uses: ATiltedTree/create-aur-release@v1 + with: + package_name: starship-bin + commit_username: "Starship Bot" + commit_email: starship.bot.noreply@gmail.com + ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}