Skip to content

Commit

Permalink
chore(actions): move setup-pesde action into dir
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
CompeyDev committed Nov 21, 2024
1 parent 166077d commit 4f7a4fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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 }}

Expand All @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down

0 comments on commit 4f7a4fb

Please sign in to comment.