From 4782fd376bbeb083d716d38fdd20d5f47eec65b5 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Mon, 22 Jul 2024 18:08:49 -0700 Subject: [PATCH] Checkout plugins later in the release workflow --- .eslintrc.cjs | 2 +- .github/workflows/release.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 8511ab25..d714ffdf 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -12,7 +12,7 @@ module.exports = { parserOptions: { project: ["./tsconfig.json"] }, - ignorePatterns: ["scripts/**/*", "plugin-runtime/**/*", "src-tauri/**/*", "plugins/**/*", "checkout/**/*"], + ignorePatterns: ["scripts/**/*", "plugin-runtime/**/*", "src-tauri/**/*", "plugins/**/*"], settings: { react: { version: "detect" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a06bde94..d436c192 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,12 +33,6 @@ jobs: - name: Checkout yaakapp/app uses: actions/checkout@v4 - - name: Checkout yaakapp/plugins - uses: actions/checkout@v4 - with: - repository: yaakapp/plugins - path: ${{ env.YAAK_PLUGINS_DIR }} - - name: Setup Node uses: actions/setup-node@v4 with: @@ -100,6 +94,12 @@ jobs: env: YAAK_VERSION: ${{ github.ref_name }} + - name: Checkout yaakapp/plugins + uses: actions/checkout@v4 + with: + repository: yaakapp/plugins + path: ${{ env.YAAK_PLUGINS_DIR }} + - uses: tauri-apps/tauri-action@v0 env: YAAK_PLUGINS_DIR: ${{ env.YAAK_PLUGINS_DIR }}