From 7fcc5bb65d459a5fc248117f600a47440b96cb90 Mon Sep 17 00:00:00 2001 From: Jan Stabenow Date: Mon, 14 Nov 2022 21:34:16 +0100 Subject: [PATCH] Del test build --- .github/workflows/build_restreamer-ui.new.yml | 47 ------------------- 1 file changed, 47 deletions(-) delete mode 100644 .github/workflows/build_restreamer-ui.new.yml diff --git a/.github/workflows/build_restreamer-ui.new.yml b/.github/workflows/build_restreamer-ui.new.yml deleted file mode 100644 index c5aa8e3..0000000 --- a/.github/workflows/build_restreamer-ui.new.yml +++ /dev/null @@ -1,47 +0,0 @@ -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