Upload Preview Deployment #444
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload Preview Deployment | |
on: | |
workflow_run: | |
workflows: ['Build Preview Deployment'] | |
types: | |
- completed | |
permissions: | |
actions: read | |
deployments: write | |
contents: read | |
pull-requests: write | |
jobs: | |
deploy-preview: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
name: Deploy Preview to Cloudflare Pages | |
steps: | |
# Downloads the build directory from the previous workflow | |
- name: Download build artifact | |
uses: actions/download-artifact@v4 | |
id: preview-build-artifact | |
with: | |
name: preview-build | |
path: build | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
run-id: ${{ github.event.workflow_run.id }} | |
- name: Deploy to Cloudflare Pages | |
uses: AdrianGonz97/refined-cf-pages-action@v1 | |
with: | |
apiToken: ${{ secrets.CF_API_TOKEN }} | |
accountId: ${{ secrets.CF_ACCOUNT_ID }} | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
projectName: ${{ vars.CF_PROJECT_NAME }} | |
directory: ${{ steps.preview-build-artifact.outputs.download-path }} | |
deploymentName: Preview |