Skip to content

elmをbuildするCI追加 #21

elmをbuildするCI追加

elmをbuildするCI追加 #21

Workflow file for this run

---
name: build-elm
on:
pull_request:
merge_group:
jobs:
build-elm:
runs-on: macos-14
timeout-minutes: 60
steps:
- uses: actions/[email protected]
if: github.event_name != 'pull_request' || github.event.action != 'closed'
with:
fetch-depth: 0
- run: |
brew install elm
if: github.event_name != 'pull_request' || github.event.action != 'closed'
- uses: dev-hato/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
branch-name-prefix: update-elm
pr-title-prefix: ElmのARM64向けバイナリをアップデートしたよ!
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true