diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d8e74d1..d133835 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,14 +34,14 @@ jobs: - name: Set up repo run: | - mkdir -p x86_64 - cp /tmp/pkgout/*.pkg.tar.zst x86_64/ - cd x86_64 + mkdir -p repo + cp /tmp/pkgout/*.pkg.tar.zst repo/ + cd repo repo-add antergos-pkgs.db.tar.gz *.pkg.tar.zst - name: Deploy to Pages uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./x86_64 + publish_dir: ./repo keep_files: false diff --git a/setup-repo.sh b/setup-repo.sh index 949c08d..1eb5236 100644 --- a/setup-repo.sh +++ b/setup-repo.sh @@ -15,7 +15,7 @@ if ! grep -q "\[antergos-pkgs\]" /etc/pacman.conf; then [antergos-pkgs] SigLevel = Optional TrustAll -Server = https://Antergos-NeXT.github.io/antergos-pkgs/x86_64 +Server = https://Antergos-NeXT.github.io/antergos-pkgs/ CONF echo "Added antergos-pkgs to pacman.conf" else