Added stale issue and pr workflow (#60) #85
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: Publish | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
deployments: write | |
name: Publish to Cloudflare Pages | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
# Install Landscape2 | |
- name: Install Landscape2 | |
run: | | |
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/cncf/landscape2/releases/download/v0.9.0/landscape2-installer.sh | sh | |
# Build JSON Schema Landscape | |
- name: Build Landscape | |
env: | |
GITHUB_TOKENS: ${{ secrets.GITHUB_TOKEN }} | |
CRUNCHBASE_API_KEY: ${{ secrets.CRUNCHBASE_API_KEY }} | |
run: | | |
landscape2 build \ | |
--data-file landscape.yml \ | |
--settings-file settings.yml \ | |
--guide-file guide.yml \ | |
--logos-path logos \ | |
--output-dir build | |
- name: Deploying to Cloudflare Pages | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
command: pages deploy build --project-name=${{ vars.CLOUDFLARE_PAGES_PROJECT_NAME }} | |
if: github.repository_owner == 'json-schema-org' |