Skip to content

bump v1.0

bump v1.0 #37

Workflow file for this run

name: Publish
on:
push:
tags:
- '*'
jobs:
publish:
name: Publish for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
name: [linux, macos]
include:
- name: linux
os: ubuntu-latest
artifact_name: target/release/tlschecker
asset_name: tlschecker-linux
- name: macos
os: macos-latest
artifact_name: target/release/tlschecker
asset_name: tlschecker-macos
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Build
run: cargo build --release --locked
- name: Upload binaries to release
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.asset_name }}
path: ${{ matrix.artifact_name }}