-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec24dd4
commit e8bf6da
Showing
1 changed file
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,26 +50,26 @@ jobs: | |
artifacts: "${{ github.event.repository.name }}-${{ needs.version.outputs.version }}-x86_64.tar.gz" | ||
generateReleaseNotes: true | ||
|
||
aur_publish: | ||
name: publish to AUR | ||
needs: [create_release] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: download artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: PKGBUILD | ||
# aur_publish: | ||
# name: publish to AUR | ||
# needs: [create_release] | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: download artifact | ||
# uses: actions/download-artifact@v4 | ||
# with: | ||
# name: PKGBUILD | ||
|
||
- name: publish AUR package | ||
uses: KSXGitHub/[email protected] | ||
with: | ||
pkgname: ${{ github.event.repository.name }}-bin | ||
pkgbuild: PKGBUILD | ||
commit_username: ${{ secrets.AUR_USERNAME }} | ||
commit_email: ${{ secrets.AUR_EMAIL }} | ||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | ||
commit_message: Update AUR package | ||
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519 | ||
# - name: publish AUR package | ||
# uses: KSXGitHub/[email protected] | ||
# with: | ||
# pkgname: ${{ github.event.repository.name }}-bin | ||
# pkgbuild: PKGBUILD | ||
# commit_username: ${{ secrets.AUR_USERNAME }} | ||
# commit_email: ${{ secrets.AUR_EMAIL }} | ||
# ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | ||
# commit_message: Update AUR package | ||
# ssh_keyscan_types: rsa,dsa,ecdsa,ed25519 | ||
|
||
cargo_publish: | ||
name: publish to crates.io | ||
|