Skip to content

Commit 70ef3a7

Browse files
committed
Change reload into one word
1 parent 119bf46 commit 70ef3a7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/dev-portal-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
4343
- name: Deploy Project Artifacts to Vercel
4444
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} --logs
45-
- name: Re-load dev portal on changed files
46-
uses: ./.github/actions/re-load-dev-portal
45+
- name: Reload dev portal on changed files
46+
uses: ./.github/actions/reload-dev-portal
4747
with:
4848
base_sha: ${{ github.event.before }}
4949
head_sha: ${{ github.event.after }}

.github/workflows/re-load-dev-portal.yml renamed to .github/workflows/reload-dev-portal.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Re-load dev portal
1+
name: Reload dev portal
22

33
on:
44
workflow_dispatch:
@@ -24,10 +24,10 @@ jobs:
2424
- name: Run prebuild script
2525
run: npm run prebuild
2626

27-
- name: Re-load dev portal
28-
uses: ./.github/actions/re-load-dev-portal
27+
- name: Reload dev portal
28+
uses: ./.github/actions/reload-dev-portal
2929
with:
3030
base_sha: ${{ inputs.base_sha }}
3131
head_sha: ${{ inputs.head_sha }}
3232
dev-portal-deploy-hook-prod: ${{ secrets.DEV_PORTAL_DEPLOY_HOOK_PROD }}
33-
revalidate-token: ${{ secrets.REVALIDATE_TOKEN }}
33+
revalidate-token: ${{ secrets.REVALIDATE_TOKEN }}

0 commit comments

Comments
 (0)