fix: Unexpected move when adding vertices and edges (#186) #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |