Disable FFmpeg opus. #380
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Release" | |
# @see https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onpushpull_requestbranchestags | |
on: | |
push: | |
branches: | |
- 'ubuntu16-cache-cross-arm' | |
jobs: | |
envs: | |
runs-on: ubuntu-20.04 | |
steps: | |
# Git checkout | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# The github.ref is, for example, refs/tags/v5.0.145 or refs/tags/v5.0-r8 | |
# Generate variables like: | |
# SRS_TAG=v5.0-r8 | |
# SRS_TAG=v5.0.145 | |
# @see https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable | |
- name: Generate varaiables | |
run: | | |
SRS_TAG=$(echo ${{ github.ref }}| awk -F '/' '{print $3}') | |
echo "SRS_TAG=$SRS_TAG" >> $GITHUB_ENV | |
outputs: | |
SRS_TAG: ${{ env.SRS_TAG }} | |
docker: | |
runs-on: ubuntu-20.04 | |
needs: | |
- envs | |
steps: | |
- name: Covert output to env | |
run: | | |
echo "SRS_TAG=${{ needs.envs.outputs.SRS_TAG }}" >> $GITHUB_ENV | |
# Docker build | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Login to docker hub | |
uses: docker/login-action@v2 | |
with: | |
username: "${{ secrets.DOCKER_USERNAME }}" | |
password: "${{ secrets.DOCKER_PASSWORD }}" | |
- name: Build docker image | |
run: | | |
docker build --tag ossrs/srs:$SRS_TAG . | |
- name: Push to docker hub | |
run: | | |
docker push ossrs/srs:$SRS_TAG | |
outputs: | |
SRS_DOCKER_PROD_DONE: ok | |
aliyun: | |
runs-on: ubuntu-20.04 | |
needs: | |
- envs | |
- docker | |
steps: | |
- name: Covert output to env | |
run: | | |
echo "SRS_TAG=${{ needs.envs.outputs.SRS_TAG }}" >> $GITHUB_ENV | |
- name: Login aliyun hub | |
uses: docker/login-action@v2 | |
with: | |
registry: registry.cn-hangzhou.aliyuncs.com | |
username: "${{ secrets.ACR_USERNAME }}" | |
password: "${{ secrets.ACR_PASSWORD }}" | |
- name: Push to Aliyun registry for ossrs/srs | |
uses: akhilerm/[email protected] | |
with: | |
src: ossrs/srs:${{ env.SRS_TAG }} | |
dst: | | |
registry.cn-hangzhou.aliyuncs.com/ossrs/srs:${{ env.SRS_TAG }} | |
outputs: | |
SRS_ALIYUN_PROD_DONE: ok | |