From 0023e102092a3007ad7da6c6536107953fecbc99 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Thu, 21 Nov 2024 19:01:33 +0000 Subject: [PATCH] chore(actions): move setup-pesde action into dir * Properly treat setup-pesde as an individual action instead of a workflow. This includes moving it into .github/actions/setup-pesde. * Update workflow usage of setup-pesde accordingly. --- .../{workflows/pesde.yml => actions/setup-pesde/action.yml} | 0 .github/workflows/ci.yml | 6 +++--- .github/workflows/publish.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename .github/{workflows/pesde.yml => actions/setup-pesde/action.yml} (100%) diff --git a/.github/workflows/pesde.yml b/.github/actions/setup-pesde/action.yml similarity index 100% rename from .github/workflows/pesde.yml rename to .github/actions/setup-pesde/action.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77002f3..7a51774 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: cache: true - name: Install pesde - uses: ./.github/workflows/pesde.yml + uses: ./.github/actions/setup-pesde with: pesde-token: ${{ secrets.PESDE_TOKEN }} @@ -45,7 +45,7 @@ jobs: cache: true - name: Install pesde - uses: ./.github/workflows/pesde.yml + uses: ./.github/actions/setup-pesde with: pesde-token: ${{ secrets.PESDE_TOKEN }} @@ -68,7 +68,7 @@ jobs: cache: true - name: Install pesde - uses: ./.github/workflows/pesde.yml + uses: ./.github/actions/setup-pesde with: pesde-token: ${{ secrets.PESDE_TOKEN }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2fd9ffe..015a6ee 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@v4 - name: Install pesde - uses: ./.github/workflows/pesde.yml + uses: ./.github/actions/setup-pesde with: pesde-token: ${{ secrets.PESDE_TOKEN }}