Skip to content

Commit

Permalink
Merge pull request #1 from 4LT/Add-package-release-workflow
Browse files Browse the repository at this point in the history
Create makefile.yml
  • Loading branch information
4LT authored Jul 1, 2022
2 parents e8c139f + a8b88d2 commit 41a0d0c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release Package

on:
release:
branches: [ "master" ]

jobs:
package:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: build package
run: make package

- name: upload
uses: actions/upload-artifact@v3
with:
name: ntcn-${{ github.event.release.tag_name }}
path: build/ntcn/

0 comments on commit 41a0d0c

Please sign in to comment.