new_package_release #32
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
concurrency: | |
cancel-in-progress: true | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
jobs: | |
update: | |
permissions: | |
contents: "write" | |
id-token: "write" | |
pages: "write" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout rsdk" | |
uses: "actions/checkout@v4" | |
with: | |
repository: "RadxaOS-SDK/rsdk" | |
- name: "Checkout current repo" | |
uses: "actions/checkout@v4" | |
with: | |
path: ".infra-repo" | |
- env: | |
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
id: "build" | |
name: "Build apt archive" | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y aptly pandoc | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
cat << EOF | gpg --import | |
${{ secrets.GPG_KEY }} | |
EOF | |
cat << EOF | gpg --import | |
${{ secrets.RADXA_APT_KEY_2024 }} | |
EOF | |
suites=( | |
"sid-test" | |
"amlogic-sid-test" | |
"rockchip-sid-test" | |
) | |
pushd .infra-repo | |
if [[ "${{ github.repository }}" != *-test ]] && \ | |
wget "https://raw.githubusercontent.com/${{ github.repository }}-test/main/pkgs.lock" -O pkgs.lock.new; then | |
mv pkgs.lock.new pkgs.lock | |
git add pkgs.lock | |
fi | |
../src/bin/rsdk infra-pkg-snapshot | |
../src/bin/rsdk infra-pkg-download "${suites[@]}" | |
../src/bin/rsdk infra-repo-build "${suites[@]}" | |
export RSDK_REPO_ORIGIN="$(../src/bin/rsdk config infra.repository.origin)" | |
git add pkgs.json | |
ls -la "$HOME/.aptly/public" | |
pushd "$HOME/.aptly/public/$RSDK_REPO_ORIGIN/" | |
cp "$OLDPWD/pkgs.json" ./ | |
pandoc --from gfm --to html --standalone "$OLDPWD/README.md" --output index.html | |
find . > files.list | |
echo "pages=$(realpath .)" >> $GITHUB_OUTPUT | |
popd | |
if [[ -n "$(git status --porcelain)" ]]; then | |
git commit -m "chore: update package snapshot" | |
fi | |
popd | |
shell: "bash" | |
- name: "Setup GitHub Pages" | |
uses: "actions/configure-pages@v5" | |
- name: "Upload artifact" | |
uses: "actions/upload-pages-artifact@v3" | |
with: | |
path: "${{ steps.build.outputs.pages }}" | |
- id: "deploy" | |
if: "github.event_name != 'pull_request'" | |
name: "Deploy to GitHub Pages" | |
uses: "actions/deploy-pages@v4" | |
- if: "steps.deploy.outcome == 'success'" | |
name: "Commit package snapshot" | |
run: | | |
pushd .infra-repo | |
git push | |
popd | |
shell: "bash" | |
name: "Update packages" | |
"on": | |
repository_dispatch: | |
types: | |
- "new_package_release" | |
workflow_dispatch: {} | |
permissions: {} |