Update Share Preview Page #24
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: Update Share Preview Page | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Branch name' | |
required: true | |
type: string | |
default: main | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
master: | |
runs-on: ubuntu-22.04 | |
name: Update Share Preview | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.inputs.branch }} | |
fetch-depth: 0 | |
token: ${{ secrets.GH_AUTOMATION_TOKEN }} | |
- name: Update preview pages | |
env: | |
STRAPI_TOKEN: ${{ secrets.STRAPI_TOKEN }} | |
run: | | |
yarn install --immutable | grep -v 'YN0013' | |
yarn build | |
- name: Deploy to Cloudflare Pages | |
id: cloudflare_deployment | |
uses: cloudflare/pages-action@v1 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
projectName: 'sw-share' | |
gitHubToken: ${{ secrets.GH_AUTOMATION_TOKEN }} | |
branch: ${{ github.event.inputs.branch }} | |
directory: './build' | |
wranglerVersion: '3' |