cli-xtask 0.10.2

A collection of utility functions and command line interfaces for cargo-xtask
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: CD

on:
  push:
    tags:
      - "v?[0-9]+.[0-9]+.[0-9]+"

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - name: Releasing assets
        uses: softprops/action-gh-release@v2
        with:
          generate_release_notes: true
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        if: ${{ startsWith(github.ref, 'refs/tags/') }}