Skip to content

github: fix release workflow syntax #5

github: fix release workflow syntax

github: fix release workflow syntax #5

Workflow file for this run

name: Create Release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Log in
run: cargo login --verbose ${{ secrets.CRATES_TOKEN }}
- name: Publish Release
run: cargo publish --verbose