dispatch-event #39
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: Commit and deploy package | |
on: | |
repository_dispatch: | |
types: [dispatch-event] | |
permissions: | |
id-token: write | |
contents: write | |
jobs: | |
deploy-debian-packages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Set Package version | |
id: version | |
run: | | |
echo 'TAG=${{ github.event.client_payload.tag }}' >> $GITHUB_OUTPUT | |
echo 'PACKAGE=${{ github.event.client_payload.package }}' >> $GITHUB_OUTPUT | |
echo 'HAS_DPDK=${{ github.event.client_payload.has_dpdk }}' >> $GITHUB_OUTPUT | |
echo 'DPDK_TAG=${{ github.event.client_payload.dpdk_tag }}' >> $GITHUB_OUTPUT | |
- name: Import GPG Key | |
uses: crazy-max/[email protected] | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
- name: Download DPDK package | |
uses: robinraju/[email protected] | |
if: ${{ steps.version.outputs.HAS_DPDK == 'true' }} | |
with: | |
repository: "MarvellEmbeddedProcessors/marvell-dpdk" | |
tag: '${{ steps.version.outputs.DPDK_TAG }}' | |
fileName: "*.deb" | |
- name: Download DAO package | |
uses: robinraju/[email protected] | |
if: ${{ steps.version.outputs.PACKAGE == 'dao' }} | |
with: | |
repository: "MarvellEmbeddedProcessors/dpu-accelerator-offload" | |
latest: ${{ steps.version.outputs.TAG == 'latest' && 'true' || 'false' }} | |
tag: "${{ steps.version.outputs.TAG == 'latest' && '' || steps.version.outputs.TAG}}" | |
fileName: "*.deb" | |
- name: Download OVS package | |
uses: robinraju/[email protected] | |
if: ${{ steps.version.outputs.PACKAGE == 'ovs' }} | |
with: | |
repository: "MarvellEmbeddedProcessors/marvell-ovs" | |
latest: ${{ steps.version.outputs.TAG == 'latest' && 'true' || 'false' }} | |
tag: "${{ steps.version.outputs.TAG == 'latest' && '' || steps.version.outputs.TAG }}" | |
fileName: "*.deb" | |
- name: Commit packages | |
env: | |
EMAIL: [email protected] | |
run: | | |
ls -alh | |
git config --global user.name 'Pavan Nikhilesh' | |
git config --global user.email "${EMAIL}" | |
mkdir -p ${PWD}/ubuntu | |
mv *.deb ${PWD}/ubuntu/. | |
cd ${PWD}/ubuntu | |
gpg --armor --export "${EMAIL}" > dao.gpg | |
dpkg-scanpackages --multiversion . > Packages | |
gzip -k -f Packages | |
apt-ftparchive release . > Release | |
gpg --default-key "${EMAIL}" -abs -o - Release > Release.gpg | |
gpg --default-key "${EMAIL}" --clearsign -o - Release > InRelease | |
echo "deb [signed-by=/etc/apt/keyrings/dao.gpg] https://marvellembeddedprocessors.github.io/packages/ubuntu ./" > dao.list | |
cd - | |
git add . | |
git commit -sam 'Package update : ${{ steps.version.outputs.TAG }}' | |
git push |