Guix Update #436
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: Guix Update | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'guix/**' | |
| - '**.el' | |
| - '**.yml' | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - '**.md' | |
| workflow_run: | |
| workflows: ["checksum"] | |
| types: | |
| - completed | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: jcs090218/setup-emacs@master | |
| with: | |
| version: 30.2 | |
| - uses: emacs-eask/setup-eask@master | |
| with: | |
| version: 'snapshot' | |
| - name: Update Scheme | |
| run: | | |
| eask install-deps | |
| eask run script guix-update | |
| - 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 Guix scheme" | |
| - name: Push updated scheme | |
| continue-on-error: true | |
| uses: jcs-actions/github-push-action@master | |
| with: | |
| branch: master | |
| rebase: true | |
| retry: 7 |