Skip to content

v1.9.0

v1.9.0 #30

Workflow file for this run

name: release-lin
on:
release:
types: [published]
workflow_dispatch:
jobs:
release:
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-unknown-linux-musl
archive: tar.gz
package: modda-cli
steps:
- uses: actions/checkout@v4
- name: Compile and release
uses: rust-build/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
SRC_DIR: ${{ matrix.package }}
TOOLCHAIN_VERSION: stable
ARCHIVE_TYPES: ${{ matrix.archive }}
EXTRA_FILES: "README.md LICENSE"