Skip to content

Commit

Permalink
tar.gz assets
Browse files Browse the repository at this point in the history
  • Loading branch information
oznu committed Feb 18, 2020
1 parent f642b3c commit 6e7fa54
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,14 @@ jobs:
mkdir -p build
cd build && SKIPINSTALL=yes VERBOSE=yes ../build-ffmpeg --build
- name: Upload Assets
- name: Prepare Asset
run: |
mkdir -p package/usr/local/bin/
cp build/workspace/bin/ffmpeg package/usr/local/bin/ffmpeg
tar -C package -zcvf ffmpeg-${{ matrix.name }}.tar.gz .
- name: Upload Asset
uses: actions/upload-artifact@v1
with:
name: ffmpeg-${{ matrix.name }}
path: build/workspace/bin/ffmpeg
path: ffmpeg-${{ matrix.name }}.tar.gz
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
workspace
build
build
package

0 comments on commit 6e7fa54

Please sign in to comment.