fixed build issue #15
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
name: Package for the AUR | |
# Only run when pushed to main | |
on: | |
push: | |
paths: | |
- aur/** | |
branches: [main] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
publish: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- pkgname: swayfx | |
assets: | | |
./aur/swayfx/sway-portals.conf | |
./aur/swayfx/50-systemd-user.conf | |
./aur/swayfx/sway.install | |
- pkgname: swayfx-git | |
assets: | | |
./aur/swayfx-git/sway-portals.conf | |
./aur/swayfx-git/50-systemd-user.conf | |
./aur/swayfx-git/sway.install | |
- pkgname: scenefx | |
- pkgname: scenefx-git | |
runs-on: ubuntu-latest | |
name: ${{ matrix.pkgname }} | |
steps: | |
- name: Check out sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Publish AUR Stable package | |
uses: ulises-jeremias/github-actions-aur-publish@v1 | |
with: | |
pkgname: ${{ matrix.pkgname }} | |
pkgbuild: aur/${{matrix.pkgname}}/PKGBUILD | |
assets: ${{ matrix.assets }} | |
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 | |
update_pkgver: false | |