Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 0 additions & 86 deletions .github/actions/reload-dev-portal/action.yml

This file was deleted.

13 changes: 5 additions & 8 deletions .github/workflows/deploy-udr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,8 @@ jobs:
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} --logs --archive=tgz

- name: Reload dev portal on changed files
uses: ./.github/actions/reload-dev-portal
with:
base_sha: ${{ github.event.before }}
head_sha: ${{ github.event.after }}
dev-portal-deploy-hook-prod: ${{ secrets.DEV_PORTAL_DEPLOY_HOOK_PROD }}
revalidate-token: ${{ secrets.REVALIDATE_TOKEN }}
bot-bypass-token: ${{ secrets.DEVELOPER_BOT_BYPASS_TOKEN }}
- name: Rebuild Dev Portal
shell: bash
run: |
echo "Rebuilding all of dev-portal"
curl -X POST ${{ secrets.DEV_PORTAL_DEPLOY_HOOK_PROD }}
14 changes: 14 additions & 0 deletions .github/workflows/force-rebuild-dev-portal.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Force Rebuild Dev Portal
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Before this action required the inputs; base_sha and head_sha which I believe scared folks. It now takes no inputs and redeploys the current main of UDR.


on:
workflow_dispatch:

jobs:
rebuild-dev-portal:
runs-on: ubuntu-latest
steps:
- name: Rebuild Dev Portal
shell: bash
run: |
echo "Rebuilding all of dev-portal"
curl -X POST ${{ secrets.DEV_PORTAL_DEPLOY_HOOK_PROD }}
34 changes: 0 additions & 34 deletions .github/workflows/force-reload-dev-portal.yml

This file was deleted.

Loading