Skip to content

docs: add FAQ and troubleshooting entries based on common Discord que… #5219

docs: add FAQ and troubleshooting entries based on common Discord que…

docs: add FAQ and troubleshooting entries based on common Discord que… #5219

Workflow file for this run

name: release-plz
permissions:
pull-requests: write
contents: write
on:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: "0 0 * * *"
concurrency:
group: release-plz
env:
MISE_EXPERIMENTAL: 1
NPM_CONFIG_FUND: false
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.MISE_GH_TOKEN || secrets.GITHUB_TOKEN }}
jobs:
release-plz:
if: github.repository == 'jdx/mise'
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
fetch-depth: 0
token: ${{ secrets.MISE_GH_TOKEN }}
- uses: crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec # v6
with:
gpg_private_key: ${{ secrets.MISE_GPG_KEY }}
git_user_signingkey: true
git_commit_gpgsign: true
git_tag_gpgsign: true
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2
with:
shared-key: build
- run: mkdir -p "$HOME/bin" && echo "$HOME/bin" >> "$GITHUB_PATH"
- run: cargo build --all-features && cp target/debug/mise "$HOME"/bin
- uses: ./.github/actions/mise-tools
- run: mise x -- bun i
- run: mise run release-plz
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}