forked from eugeneware/ffmpeg-static
-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (49 loc) · 1.39 KB
/
release-binaries.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
on:
push:
tags:
- "b*"
name: Release Binaries
jobs:
release:
permissions:
contents: write
deployments: write
issues: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Download Binaries
run: sh ./build/index.sh
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref }}
name: Release ${{ github.ref }}
token: ${{ secrets.GITHUB_TOKEN }}
files: |
bin/darwin-arm64.README
bin/darwin-x64.README
bin/ffmpeg-darwin-arm64
bin/ffmpeg-darwin-x64
bin/ffmpeg-linux-arm
bin/ffmpeg-linux-arm64
bin/ffmpeg-linux-ia32
bin/ffmpeg-linux-x64
bin/ffmpeg-win32-x64
bin/ffprobe-darwin-arm64
bin/ffprobe-darwin-x64
bin/ffprobe-linux-arm
bin/ffprobe-linux-arm64
bin/ffprobe-linux-ia32
bin/ffprobe-linux-x64
bin/ffprobe-win32-x64
bin/linux-arm.LICENSE
bin/linux-arm.README
bin/linux-arm64.LICENSE
bin/linux-arm64.README
bin/linux-ia32.LICENSE
bin/linux-ia32.README
bin/linux-x64.LICENSE
bin/linux-x64.README
bin/win32-x64.LICENSE