feat: added mise ls --prunable
flag (#4062)
#2114
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
env: | |
GITHUB_TOKEN: ${{ secrets.MY_RELEASE_PLEASE_TOKEN || secrets.GITHUB_TOKEN }} | |
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: true | |
- run: mise x wait-for-gh-rate-limit -- wait-for-gh-rate-limit | |
- 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' }} |