Debian Build #16888
This file contains hidden or 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: Debian Build | |
| on: | |
| workflow_run: | |
| workflows: ["Debian Update"] | |
| types: | |
| - completed | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| get-version: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| version: ${{ steps.expose-ver.outputs.VERSION }} | |
| steps: | |
| - uses: jcs090218/setup-emacs@master | |
| with: | |
| version: 30.2 | |
| - uses: emacs-eask/setup-eask@master | |
| with: | |
| version: 'snapshot' | |
| - uses: actions/checkout@v6 | |
| - name: Expose Version | |
| id: expose-ver | |
| run: | | |
| eask install-deps --dev | |
| echo "VERSION=$(eask load scripts/latest-tag.el)" >> $GITHUB_OUTPUT | |
| build: | |
| needs: [get-version] | |
| runs-on: ubuntu-latest | |
| env: | |
| VERSION: ${{ needs.get-version.outputs.version }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| arch: | |
| - arm64 | |
| - x64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Expose Arch | |
| if: matrix.arch == 'x64' | |
| run: | | |
| echo "ARCH=amd64" >> $GITHUB_ENV | |
| - name: Expose Arch | |
| if: matrix.arch == 'arm64' | |
| run: | | |
| echo "ARCH=arm64" >> $GITHUB_ENV | |
| - name: Update deb package | |
| working-directory: debian | |
| run: | | |
| curl -fsSL https://github.com/emacs-eask/cli/releases/download/${{ env.VERSION }}/eask_${{ env.VERSION }}_linux-${{ matrix.arch }}.tar.gz -o temp.tar.gz | |
| mkdir -p "$(pwd)/eask_${{ env.VERSION }}_${{ env.ARCH }}/DEBIAN" | |
| mkdir -p "$(pwd)/eask_${{ env.VERSION }}_${{ env.ARCH }}/usr/local/bin" | |
| cp control/${{ matrix.arch }} "$(pwd)/eask_${{ env.VERSION }}_${{ env.ARCH }}/DEBIAN/control" | |
| tar -xvzf temp.tar.gz -C "$(pwd)/eask_${{ env.VERSION }}_${{ env.ARCH }}/usr/local/bin" | |
| dpkg-deb --build eask_${{ env.VERSION }}_${{ env.ARCH }} | |
| - name: Clean up | |
| working-directory: debian | |
| run: | | |
| rm -rf temp.tar.gz | |
| rm -rf eask_${{ env.VERSION }}_${{ env.ARCH }} | |
| - name: Set git config | |
| run: | | |
| git config user.name github-actions | |
| git config user.email [email protected] | |
| - name: Commit | |
| continue-on-error: true | |
| run: | | |
| git pull | |
| git add . | |
| git commit -m "Update Debian package" | |
| - name: Push updated deb package | |
| continue-on-error: true | |
| uses: jcs-actions/github-push-action@master | |
| with: | |
| branch: master | |
| rebase: true | |
| retry: 7 |