golanggohlsrtmpwebrtcmedia-serverobs-studiortcprtmp-proxyrtmp-serverrtprtsprtsp-proxyrtsp-relayrtsp-serversrtstreamingwebrtc-proxy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
1.9 KiB
92 lines
1.9 KiB
name: release |
|
|
|
on: |
|
push: |
|
tags: |
|
- 'v*' |
|
|
|
jobs: |
|
make_binaries: |
|
runs-on: ubuntu-22.04 |
|
|
|
steps: |
|
- uses: actions/checkout@v3 |
|
|
|
- run: make binaries |
|
|
|
- uses: actions/upload-artifact@v3 |
|
with: |
|
name: binaries |
|
path: binaries |
|
|
|
github: |
|
needs: make_binaries |
|
runs-on: ubuntu-22.04 |
|
|
|
steps: |
|
- uses: actions/checkout@v3 |
|
|
|
- uses: actions/download-artifact@v3 |
|
with: |
|
name: binaries |
|
path: binaries |
|
|
|
- uses: actions/github-script@v6 |
|
with: |
|
github-token: ${{ secrets.GITHUB_TOKEN }} |
|
script: | |
|
const fs = require('fs').promises; |
|
const { repo: { owner, repo } } = context; |
|
|
|
const currentRelease = context.ref.split('/')[2]; |
|
|
|
const res = await github.rest.repos.createRelease({ |
|
owner, |
|
repo, |
|
tag_name: currentRelease, |
|
name: currentRelease, |
|
}); |
|
const release_id = res.data.id; |
|
|
|
for (const name of await fs.readdir('./binaries/')) { |
|
await github.rest.repos.uploadReleaseAsset({ |
|
owner, |
|
repo, |
|
release_id, |
|
name, |
|
data: await fs.readFile(`./binaries/${name}`), |
|
}); |
|
} |
|
|
|
dockerhub: |
|
needs: make_binaries |
|
runs-on: ubuntu-22.04 |
|
|
|
steps: |
|
- uses: actions/checkout@v3 |
|
|
|
- uses: actions/download-artifact@v3 |
|
with: |
|
name: binaries |
|
path: binaries |
|
|
|
- run: make dockerhub |
|
env: |
|
DOCKER_USER: ${{ secrets.DOCKER_USER }} |
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} |
|
|
|
apidocs: |
|
needs: make_binaries |
|
runs-on: ubuntu-22.04 |
|
|
|
steps: |
|
- uses: actions/checkout@v3 |
|
|
|
- run: make apidocs-gen |
|
|
|
- run: mv apidocs/*.html apidocs/index.html |
|
|
|
- uses: peaceiris/actions-gh-pages@v3 |
|
with: |
|
github_token: ${{ secrets.GITHUB_TOKEN }} |
|
publish_dir: ./apidocs
|
|
|