Skip to content

Commit e1acd43

Browse files
abihfrhutsAMD
authored andcommitted
Create publish header action
1 parent 5b32766 commit e1acd43

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish Header
2+
3+
on:
4+
push:
5+
tags: v*
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: bundle header
13+
run: |
14+
mv amf/public/include AMF
15+
tar czf AMF-headers.tar.gz AMF/
16+
- name: Release
17+
uses: softprops/action-gh-release@v1
18+
if: startsWith(github.ref, 'refs/tags/')
19+
with:
20+
files: AMF-headers.tar.gz

0 commit comments

Comments
 (0)