summarylogtreecommitdiffstats
path: root/publish.sh
diff options
context:
space:
mode:
Diffstat (limited to 'publish.sh')
-rwxr-xr-xpublish.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/publish.sh b/publish.sh
index a79690666d37..4375c1b5d117 100755
--- a/publish.sh
+++ b/publish.sh
@@ -4,7 +4,7 @@ set -e # exit on error
# make prebuilt executable
dotnet clean
-dotnet build -c Release --sc --use-current-runtime -p:PublishSingleFile=true
+dotnet publish -c Release --use-current-runtime
# update SRCINFO
git clean -f
@@ -12,6 +12,9 @@ git reset --hard
makepkg --printsrcinfo > .SRCINFO
(git add .SRCINFO && git commit -m "SRCINFO" && git push) || true
+# verify that makepkg works
+makepkg -C --noconfirm
+
# push to aur
if [ -z "$(git remote | grep aur)" ]; then
git remote add aur ssh://aur@aur.archlinux.org/rgx-git.git