konsoleat 1.0.12

A tool that activates or creates a Konsole terminal session in a specified working directory
name: release

on:
  push:
    tags: [v*]

permissions:
  contents: write

jobs:
  release:
    name: release ${{ matrix.target }}
    runs-on: ubuntu-latest
    strategy:
      matrix:
        target:
          - x86_64-unknown-linux-gnu
          - x86_64-unknown-linux-musl
    steps:
      - name: Checkout
        uses: actions/checkout@v7

      - name: Install cross
        uses: taiki-e/install-action@v2
        with:
          tool: cross

      - name: Compile and release
        uses: taiki-e/upload-rust-binary-action@v1
        with:
          bin: konsoleat
          target: ${{ matrix.target }}
          token: ${{ secrets.GITHUB_TOKEN }}