Skip to content

order list alphabetically #9

order list alphabetically

order list alphabetically #9

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch full history to prevent issues
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # Use the Node.js version of your choice
- name: Install dependencies
run: npm install
- name: Generate developer.json
run: node generate-developer-json.js # Assuming your script is named generate-developer-json.js
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.TOKEN }}
publish_dir: ./ # Adjust this if necessary