opstr 1.1.0

‘Operate on strings’ command line utility
Documentation
name: Release

on:
  release:
    types: [created]

jobs:
  release:
    name: release ${{ matrix.target }}
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        include:
          - target: x86_64-pc-windows-gnu
            archive: zip
          - target: x86_64-unknown-linux-musl
            archive: tar.gz tar.xz tar.zst
          ## 2024-04-05: had to exclude apple-darwin because of https://github.com/rust-build/rust-build.action/issues/88
          ##   TODO re-enable once the build succeeds again
          #- target: x86_64-apple-darwin
          #  archive: zip
    steps:
      - uses: actions/checkout@v4.1.1
      - name: Compile and release
        uses: rust-build/rust-build.action@v1.4.5
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          RUSTTARGET: ${{ matrix.target }}
          ARCHIVE_TYPES: ${{ matrix.archive }}