Update #3
Workflow file for this run
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: Update | |
on: [workflow_dispatch] | |
jobs: | |
update-kmono: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v4 | |
- uses: DeLaGuardo/setup-clojure@9.5 | |
with: | |
bb: latest | |
- name: Configure git | |
run: | | |
git config --global user.email "ci@kepler16.com" | |
git config --global user.name "Homebrew Tap" | |
- name: Compile KL | |
run: | | |
message=$(scripts/compile.bb kepler16 kmono) | |
git add . | |
git commit -m "${message}" || true | |
message=$(scripts/compile.bb kepler16 kl) | |
git add . | |
git commit -m "${message}" || true | |
- name: Release | |
run: | | |
git push |