name: Publish
on:
pull_request:
types: [closed]
workflow_dispatch:
permissions:
contents: write
env:
GIT_CONFIG_COUNT: "1"
GIT_CONFIG_KEY_0: init.defaultBranch
GIT_CONFIG_VALUE_0: main
MISE_ENV: dev,release
CACHE_WRITE: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
concurrency:
group: publish-${{ github.ref }}
cancel-in-progress: false
jobs:
publish:
if: >-
github.event_name == 'workflow_dispatch' ||
(github.event.pull_request.merged &&
github.event.pull_request.head.ref == 'version-packages')
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 with:
persist-credentials: false
ref: ${{ github.event.pull_request.merge_commit_sha || github.sha }}
- name: Set up mise
uses: jdx/mise-action@7e36c90d9ab29c415a2384db3006f3ec8a8cc654 with:
version: 2026.8.2
cache: true
cache_save: ${{ env.CACHE_WRITE }}
- run: mise install --locked
- uses: victor-software-house/verctl/actions/publish@c9f41e8df9746ad240cf59bc18626c0d938c7662 env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}