[nix-darwin] Remove enchant and jinx packages #254
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: Publish Emacs config | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build-emacs-config-page: | |
runs-on: ubuntu-latest | |
container: alpine:3.13.4 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install emacs | |
run: apk --update add emacs | |
- name: Render config into html | |
run: cd scripts && sh render-emacs-config-to-html.sh | |
- name: Pushes to destination repository | |
uses: cpina/github-action-push-to-another-repository@main | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} | |
with: | |
source-directory: "scripts/output" | |
destination-github-username: "erickgnavar" | |
destination-repository-name: "emacs-config" | |
user-email: [email protected] | |
target-branch: master |