diff --git a/.github/workflows/build_restreamer-ui.new.yml b/.github/workflows/build_restreamer-ui.new.yml new file mode 100644 index 0000000..c5aa8e3 --- /dev/null +++ b/.github/workflows/build_restreamer-ui.new.yml @@ -0,0 +1,47 @@ +name: Share data between jobs + +on: [push] + +jobs: + job_1: + name: Build react + runs-on: ubuntu-latest + steps: + - name: Clone repository + uses: actions/checkout@v2 + - name: Use Node.js 19.0 + uses: actions/setup-node@v1 + with: + node-version: 19.0 + - name: Switch yarn version + run: yarn set version berry + - name: Set httpTimeout + run: yarn config set httpTimeout 600000 + - name: Install dependencies + run: yarn install + - name: Generate build + run: yarn run build + - name: Upload math result for job 1 + uses: actions/upload-artifact@v3 + with: + name: react-github-actions-build + path: build + + job_2: + name: Multiply by 9 + needs: job_1 + runs-on: windows-latest + steps: + - name: Download math result for job 1 + uses: actions/download-artifact@v3 + with: + name: react-github-actions-build + - shell: bash + run: | + value=`cat math-homework.txt` + expr $value \* 9 > math-homework.txt + - name: Upload math result for job 2 + uses: actions/upload-artifact@v3 + with: + name: homework + path: math-homework.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a7ee77..8f27d90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## v1.5.0 > v1.5.1 - Fix FFmpeg version check for RTSP sources (datarhei/restreamer#455) +- Fix requires Core >= v16.11.0 and FFmpeg >= 5.1.0 ## v1.4.0 > v1.5.0 diff --git a/src/version.js b/src/version.js index 01c7065..8dff732 100644 --- a/src/version.js +++ b/src/version.js @@ -1,7 +1,7 @@ import pkg from '../package.json'; -const Core = '^16.10.1'; -const FFmpeg = '^4.1.0 || ^5.0.0'; +const Core = '^16.11.0'; +const FFmpeg = '^5.1.0'; const UI = pkg.bundle ? pkg.bundle : pkg.name + ' v' + pkg.version; const Version = pkg.version;