/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
.github/workflows/update-assets.yml
40 строк
1 KB
dependabot[bot]
Bump actions/checkout from 7.0.0 to 7.0.1 in the github-actions group (#60900)
27 июл 2026, 11:56
Не верифицирован
27 июл 2026, 11:56
1ada28e
Код
Авторство
О чём код?
name: 'update assets' on: push: branches: - master - '*.x' paths: - 'src/Illuminate/Foundation/resources/exceptions/renderer/**' - '!src/Illuminate/Foundation/resources/exceptions/renderer/dist/**' pull_request: paths: - 'src/Illuminate/Foundation/resources/exceptions/renderer/**' - '!src/Illuminate/Foundation/resources/exceptions/renderer/dist/**' permissions: contents: write jobs: update: runs-on: ubuntu-latest timeout-minutes: 5 steps: - name: Checkout Code uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6 with: node-version: 22 - name: Update Exception Renderer Assets run: | npm ci --prefix "./src/Illuminate/Foundation/resources/exceptions/renderer" npm run build --prefix "./src/Illuminate/Foundation/resources/exceptions/renderer" - name: Commit Compiled Files uses: stefanzweifel/git-auto-commit-action@4a55954c782fc1ea30b9056cd3e7a2b40ca8887d # v7 with: commit_message: Update Assets