apkbuilds @ 840635b5708b114ff010bf5fedf55b3fd67a8960

chore: Update to 3.20
diff --git a/README.md b/README.md
index 891a3d131883f0bc3d14bfaf5a8b764aed0247f8..22ad47204cb216108d92a9bd488f5a580a9fccde 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
 If for whatever reason you want to add this repo:
 
 ```shell
-echo "https://artifacts.gabrielgio.me/repo/v3.19/" >> /etc/apk/repositories
+echo "https://artifacts.gabrielgio.me/repo/v3.20/" >> /etc/apk/repositories
 ```
 
 Then trust me:
@@ -20,7 +20,7 @@ curl https://artifacts.gabrielgio.me/repo/mail%40gabrielgio.me-62ddc4dc.rsa.pub \
     -o  /etc/apk/keys/mail@gabrielgio.me-62ddc4dc.rsa.pub
 ```
 
-# Apks Alpine 3.19
+# Apks Alpine 3.20
 
 For docs check https://apkdoc.gabrielgio.me/
 
diff --git a/build.yml b/build.yml
deleted file mode 100644
index 7a3ba59e7c1acf24cb30bf1a61ac25e89f454302..0000000000000000000000000000000000000000
--- a/build.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-image: alpine/3.19
-repositories:
-  gabrielgio.me: >
-    https://artifacts.gabrielgio.me/repo/v3.19/
-    https://artifacts.gabrielgio.me/repo/mail%40gabrielgio.me-62ddc4dc.rsa.pub
-    mail@gabrielgio.me-62ddc4dc.rsa.pub
-packages:
-  - openssl
-  - rsync
-  - alpine-sdk
-  - minify
-  - apkdoc
-environment:
-  remote: builds@gabrielgio.me
-  remote_path: /var/www/artifacts.gabrielgio.me/repo/
-  packages: []
-sources:
-  - https://git.sr.ht/~gabrielgio/apkbuilds
-secrets:
-  - 008c4f67-b864-47f8-9790-cd32f2ae8516
-  - df9d57f4-43bb-4084-a748-dbf02848bdd0
-  - d8a9e8ed-cdb0-4e0e-9238-361acbe8611f
-tasks:
-  - setup: |
-      cd apkbuilds 
-      ./pkgkit add-repo -s apks ~/.abuild/mail@gabrielgio.me-62ddc4dc.rsa
-  - build: |
-      cd apkbuilds
-      ./pkgkit build -cu "${packages[@]}"
-  - deploy: |
-      cd apkbuilds
-      ./pkgkit upload "$remote" "$remote_path" "${packages[@]}"
-  - doc: |
-      cd apkbuilds
-      sshopts="ssh -o StrictHostKeyChecking=no"
-      apkdoc -u "https://artifacts.gabrielgio.me/repo/v3.19/x86_64/APKINDEX.tar.gz" -f docs/index.html -o index.html
-      minify -o index.html index.html
-      rsync --rsh="$sshopts" -rP index.html $remote:/var/www/apkdoc.gabrielgio.me/
-
diff --git a/docs/index.html b/docs/index.html
index 802aabc8401914e1ab08ca2d9414e27722801fef..655c1e200cdf069ad7abc2a0c237bd56453f9f89 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -535,10 +535,10 @@ <header id="title-block-header">
 <h1 class="title">Gabriel's apk repo</h1>
 </header>
 <p> To enable this repository:</p>
-<code>echo "https://artifacts.gabrielgio.me/repo/v3.19/" >> /etc/apk/repositories
+<code>echo "https://artifacts.gabrielgio.me/repo/v3.20/" >> /etc/apk/repositories
 curl https://artifacts.gabrielgio.me/repo/mail%40gabrielgio.me-62ddc4dc.rsa.pub -o  /etc/apk/keys/mail@gabrielgio.me-62ddc4dc.rsa.pub</code>
 
-<h1 id="apks-alpine">Apks Alpine 3.19</h1>
+<h1 id="apks-alpine">Apks Alpine 3.20</h1>
 {{ range $e := . }}
 <h2 id="{{ $e.Name  }}">{{ $e.Name  }}</h2>
     {{ range $name, $value := ($e.Properties) }}
diff --git a/submit-builds b/submit-builds
deleted file mode 100755
index eada36932b784ee1af013c64ca5dc911c872152b..0000000000000000000000000000000000000000
--- a/submit-builds
+++ /dev/null
@@ -1,66 +0,0 @@
-#!/bin/sh
-upstream=https://builds.sr.ht
-manifest=build.yml
-
-if [ -e ~/.config/sr.ht ]
-then
-	. ~/.config/sr.ht
-fi
-
-while getopts m:u:t:h flag
-do
-	case $flag in
-		u)
-			upstream="$OPTARG"
-			;;
-		t)
-			bearer_token="$OPTARG"
-			;;
-		m)
-			manifest="$OPTARG"
-			;;
-		h)
-			echo "Usage: $0 [-u https://upstream...] [-t oauth token] <packages...>"
-			exit 0
-			;;
-	esac
-done
-shift $((OPTIND-1))
-
-builds=""
-note=""
-for target in $*
-do
-	if [ "$builds" = "" ]
-	then
-		builds="'${target#sr.ht/}'"
-		note="${target#sr.ht/}"
-	else
-		builds="$builds, '${target#sr.ht/}'"
-		if [ "${#note}" -lt 128 ]
-		then
-			note="$note, ${target#sr.ht/}"
-		fi
-	fi
-done
-
-vars="$(sed "s/packages: \\[\\]/packages: [$builds]/g" < $manifest | jq -sR '{
-	"manifest": .,
-	"tags": ["apkbuilds"],
-	"note": "'"$note"'"
-}')"
-query="$(jq -sR '.' <<"EOF"
-mutation SubmitJob($manifest: String!, $tags: [String!]!, $note: String!) {
-	submit(manifest: $manifest, tags: $tags, note: $note) {
-		id, tags
-	}
-}
-EOF
-)"
-
-curl --oauth2-bearer "$bearer_token" \
-	-H Content-Type:application/json \
-	-d '{
-		"query": '"$query"',
-		"variables": '"$vars"'
-	}' "$upstream/query" | jq .