Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Add binary release workflow on tags. #1

Add binary release workflow on tags.

Add binary release workflow on tags. #1

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build kak-tree-sitter
run: cargo build --release -p kak-tree-sitter
- uses: actions/upload-artifact@v4
with:
name: kak-tree-sitter.Linux-x86_64
path: target/release/kak-tree-sitter
- name: Build ktsctl
run: cargo build --release -p ktsctl
- uses: actions/upload-artifact@v4
with:
name: ktsctl.Linux-x86_64
path: target/release/ktsctl
release-linux:

Check failure on line 25 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

You have an error in your yaml syntax on line 25
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Build kak-tree-sitter
run: cargo build --release -p kak-tree-sitter
- uses: actions/upload-artifact@v4
with:
name: kak-tree-sitter.macOS-x86_64
path: target/release/kak-tree-sitter
- name: Build ktsctl
run: cargo build --release -p ktsctl
- uses: actions/upload-artifact@v4
with:
name: ktsctl.macOS-x86_64
path: target/release/ktsctl