Skip to content

feat: allow calling mise settings foo=bar as shorthand #1145

feat: allow calling mise settings foo=bar as shorthand

feat: allow calling mise settings foo=bar as shorthand #1145

Workflow file for this run

name: docs
on:
push:
paths:
- "docs/**"
- "tasks/docs/**"
branches:
- main
pull_request:
paths:
- "docs/**"
- "tasks/docs/**"
branches:
- main
concurrency:
group: docs-${{ github.head_ref }}
cancel-in-progress: true
jobs:
docs:
if: github.repository == 'jdx/mise'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # for lastUpdated
- uses: jdx/mise-action@v2
with:
install_args: bun
cache: false
- run: bun i
- run: mise run docs:release
env:
AWS_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_SECRET_ACCESS_KEY }}
DRY_RUN: ${{ github.event_name != 'push' || github.ref != 'refs/heads/main' }}