railpack

Configure and troubleshoot Railpack builds, with emphasis on RAILPACK_* environment variables, railpack.json overlays, build-plan inspection, local CLI installation and usage, and local BuildKit containers. Use for Railpack provider configuration, custom install/build/start commands, Mise or Apt packages, build or runtime variables and secrets, generated-plan debugging, BUILDKIT_HOST errors, or running Railpack from a release or source checkout.

Install
npx skills add 'https://github.com/railwayapp/railpack/tree/main/.'
Incomplete bundle · no download
main · 21a254fScanned 2026-09-17

Contributors

GitHub-linked commit authors for this SKILL.md at the saved revision. Co-authors and history before file renames are not included.

File history ↗

.github/workflows/update-mise.yml

.github/workflows/update-mise.ymlBrowse 1970 files
View on GitHub
← Back to SKILL.md
name: Update Mise Version on:  schedule:    - cron: '0 0 * * *'  workflow_dispatch: permissions:  contents: write  pull-requests: write env:  MISE_ENV: ci jobs:  update-mise:    runs-on: ubuntu-latest    steps:      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd        with:          fetch-depth: 0       - uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151       # We manually configure the git user here to support the mise-upgrade script      # which handles the commit and PR creation. This keeps the script as the      # single source of truth for both local and CI usage.      - run: |          git config user.name "github-actions[bot]"          git config user.email "github-actions[bot]@users.noreply.github.com"       - run: mise run mise-upgrade        env:          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}          # go-snaps ignores UPDATE_SNAPS when CI is detected, preventing snapshot          # writes. This overrides that so the mise-upgrade script can update them.          CI: false