Skip to content

Commit

Permalink
Add workflow for uploading release package
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizhangNV committed Feb 12, 2024
1 parent 67d48e8 commit 66c0634
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: release-linux

on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install prerequisite
run: sudo apt-get install ninja-build
- name: configure
run: cmake --preset linux-gcc
- name: make
run: cmake --build build/linux-gcc

0 comments on commit 66c0634

Please sign in to comment.