Skip to content

fix: Unexpected move when adding vertices and edges (#186) #14

fix: Unexpected move when adding vertices and edges (#186)

fix: Unexpected move when adding vertices and edges (#186) #14

Workflow file for this run

name: Create Release
on:
push:
tags:
- "v*.*.*" # Push events to matching v*.*.*, i.e. v2.1.0
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install tar zip -y
- name: Create tarball
run: tar -czvf header-only.tar.gz include
- name: Create zip
run: zip -r header-only.zip include
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
header-only.zip
header-only.tar.gz
generate_release_notes: true