Merge pull request #5 from ShyyLexi/main

Set default parallel downloads on pacman to 3
main
Michal 2 years ago committed by GitHub
commit 153b137c66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,7 +10,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.SECRET_TOKEN }}
container:
image: crystallinux/crystal
image: ghcr.io/crystal-linux/crystal:latest
options: --privileged
steps:
@ -34,7 +34,7 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: "iso/*.iso,iso/MD5SUMS"
token: ${{ secrets.SECRET_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.date.outputs.date }}

@ -1,5 +1,7 @@
#!/usr/bin/env bash
rm -fv *.iso
cp crystal/pacman.conf crystal/airootfs/etc/.
if [[ "$1" == "" ]]; then
WORKDIR=$(mktemp -d)

@ -37,6 +37,7 @@ ILoveCandy
# We cannot check disk space from within a chroot environment
#CheckSpace
#VerbosePkgLists
ParallelDownloads = 3
# By default, pacman accepts packages signed by keys that its local keyring
# trusts (see pacman-key and its man page), as well as unsigned packages.

Loading…
Cancel
Save