From 72d786bb79a862d7fa1a0a96746ea3b6f69a558b Mon Sep 17 00:00:00 2001 From: Yann Bertrand <5855339+yannbertrand@users.noreply.github.com> Date: Thu, 19 Dec 2024 14:39:57 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Remove=20deprecated=20recorder?= =?UTF-8?q?=20GhA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/record-images.yml | 42 ----------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/record-images.yml diff --git a/.github/workflows/record-images.yml b/.github/workflows/record-images.yml deleted file mode 100644 index 86c2d088..00000000 --- a/.github/workflows/record-images.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Record Images and Videos - -on: - workflow_dispatch: - -jobs: - build: - runs-on: macos-13.0 - - steps: - - name: Checkout - uses: actions/checkout@master - - - name: Install Node.js - uses: actions/setup-node@v4 - with: - node-version: 16.20.2 - - - name: Get yarn cache - working-directory: record - id: yarn-cache - run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v4 - with: - path: ${{ steps.yarn-cache.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- - - - run: yarn install --frozen-lockfile - working-directory: record - - - run: yarn record:next - working-directory: record - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v6 - with: - commit-message: ':camera: Update images and videos ${{ runner.os }}' - title: ':camera: Update images and videos ${{ runner.os }}' - branch: update-images-and-videos-${{ runner.os }} - delete-branch: true