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
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:
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
- run: mise install --locked
- name: Install verctl
run: cargo install --git https://github.com/victor-software-house/verctl --locked --force
- uses: victor-software-house/verctl/actions/publish@main
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}