Skip to content

Automated release

Automated release #20

Workflow file for this run

name: Publish
on:
pull_request:
types:
- closed
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
publish:
runs-on: ubuntu-latest
if: github.event.pull_request.merge == true && startsWith(github.head_ref, 'release-v')
steps:
- name: cargo login
run: cargo login ${{ secrets.ORCA_API_TOKEN }}
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Publish Update
run: cargo publish