Skip to content

Commit

Permalink
Merge pull request #10 from viktorxda/master
Browse files Browse the repository at this point in the history
Add github workflow
  • Loading branch information
flyrouter authored Oct 12, 2023
2 parents 7c03a5b + c936260 commit faebf89
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build
on:
push:
branches:
- master
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive

- name: Build
run: |
bash build.sh venc
cp -Tr build/Release/bin output
bash build.sh vdec
cp -Tr build/Release/bin output
- name: Upload
uses: softprops/action-gh-release@v1
with:
tag_name: latest
files: |
output/venc
output/vdec
output/osd

0 comments on commit faebf89

Please sign in to comment.