diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 0416acc..8193215 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,6 +1,6 @@ # These are supported funding model platforms -github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +github: KSXGitHub # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] patreon: khai96_ open_collective: # Collective unavailable ko_fi: # Replace with a single Ko-fi username diff --git a/README.md b/README.md index 6b2282b..e3acfb0 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,9 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Generate PKGBUILD + run: bash ./generate-pkgbuild.bash + - name: Publish AUR package uses: KSXGitHub/github-actions-deploy-aur@ with: diff --git a/build.sh b/build.sh index 334f319..34063f6 100755 --- a/build.sh +++ b/build.sh @@ -64,13 +64,13 @@ echo '::endgroup::' echo '::group::Copying files into /tmp/local-repo' { echo "Copying $pkgbuild" - cp -r "$pkgbuild" /tmp/local-repo/ + cp -v "$pkgbuild" /tmp/local-repo/PKGBUILD } # shellcheck disable=SC2086 # Ignore quote rule because we need to expand glob patterns to copy $assets if [[ -n "$assets" ]]; then echo 'Copying' $assets - cp -rt /tmp/local-repo/ $assets + cp -rvt /tmp/local-repo/ $assets fi echo '::endgroup::'