mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-19 07:51:53 +00:00
Removes path filters so the workflow runs on every PR, ensuring dist/ is always up to date regardless of which files changed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
555 B
YAML
30 lines
555 B
YAML
name: Auto-update Distribution
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
update-dist:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout PR branch
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '24'
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Build and package
|
|
run: npm run all
|
|
|
|
- name: autofix.ci
|
|
uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c
|