Refresh Repository #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Refresh Repository" | |
on: | |
workflow_dispatch: | |
jobs: | |
refresh-repository: | |
name: Build and Upload Packages to Repository | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/void-linux/void-buildroot-${{ matrix.config.libc }}:20231230R1 | |
options: --platform ${{ matrix.config.platform }} | |
env: | |
PATH: "/usr/libexec/chroot-git:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/usr/local/bin:/tmp/bin" | |
ARCH: "${{ matrix.config.arch }}" | |
BOOTSTRAP: "${{ matrix.config.host }}" | |
TEST: "${{ matrix.config.test }}" | |
HOSTREPO: /hostrepo | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { | |
arch: x86_64, | |
host: x86_64, | |
libc: glibc, | |
platform: linux/amd64, | |
test: 1, | |
} | |
steps: | |
- name: Prepare container | |
run: | | |
mkdir -p /etc/xbps.d && cp /usr/share/xbps.d/*-repository-*.conf /etc/xbps.d/ | |
ls -la | |
sed -i 's|repo-default|repo-ci|g' /etc/xbps.d/*-repository-*.conf | |
xbps-install -Syu xbps | |
xbps-install -Syu | |
xbps-install -y tar curl unzip | |
#- name: Download artifact | |
#uses: actions/download-artifact@v4 | |
#with: | |
#name: hyprland-void | |
#path: ./hyprland-void/ | |
- name: Extract | |
run: | | |
mkdir hyprland-void | |
curl -L https://github.com/Makrennel/hyprland-void/actions/runs/9457220549/artifacts/1587632942 > ./hyprland-void.zip | |
unzip -d ./hyprland-void ./hyprland-void.zip | |
mkdir ~/repository | |
tar -xvf ./hyprland-void/hyprland.tar.gz -C ~/repository | |
- name: Retrieve private key | |
env: | |
PEM_TOKEN: ${{ secrets.PRIVATE_PEM_TOKEN }} | |
run: | | |
curl -L https://raw.githubusercontent.com/Makrennel/hyprland-void-private-pem/master/private.pem?token=$PEM_TOKEN > ./private.pem | |
- name: Sign repository | |
env: | |
PEM_PASSPHRASE: ${{ secrets.PRIVATE_PEM_PASSPHRASE }} | |
run: | | |
export XBPS_PASSPHRASE=${{ env.PEM_PASSPHRASE }} | |
xbps-rindex --privkey ./private.pem --sign --signedby "hyprland-void-github-action" ~/repository | |
xbps-rindex --privkey ./private.pem --sign-pkg ~/repository/*.xbps | |
- name: Checkout hyprland-void | |
uses: actions/checkout@v4 | |
- name: Refresh repository | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
git push origin -d repository | |
git switch --orphan repository | |
cp ~/repository/* ./ | |
git add . | |
git commit -m "Upload latest packages to repository" | |
git push -u origin repository | |