Skip to content

testing

testing #18

Workflow file for this run

name: Release
on:
workflow_dispatch:
workflow_call:
push:
branches:
- test-tagging
permissions:
contents: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: katyo/publish-crates@v2
id: publish-crates
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
dry-run: true
check-repo: false
no-verify: true
ignore-unpublished-changes: true
# https://github.com/googleapis/release-please-action?tab=readme-ov-file#creating-majorminor-tags
- name: Tag versions
# if: ${{ steps.publish-crates.outputs.published == '[]' }}
run: |
echo "Tagging versions"
echo ${{steps.publish-crates.outputs.published}}