Generate icons #73
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: Generate icons | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 2 * * *' | |
jobs: | |
generate-icons: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node_version: ['20'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Set up node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node_version }} | |
- name: Install dependencies | |
run: npm ci --legacy-peer-deps | |
- name: Build nx-generators | |
run: npx nx build nx-generators | |
- run: npx nx generate @semantic-icons/nx-generators:heroicons | |
- run: npx nx generate @semantic-icons/nx-generators:tabler-icons | |
- run: npx nx generate @semantic-icons/nx-generators:flowbite-icons | |
- run: npx nx generate @semantic-icons/nx-generators:flag-icons | |
- run: npx nx generate @semantic-icons/nx-generators:lucide-icons | |
- run: npx nx generate @semantic-icons/nx-generators:circle-flags | |
- run: npx nx generate @semantic-icons/nx-generators:bootstrap-icons | |
- run: npx nx generate @semantic-icons/nx-generators:lineicons | |
- run: npx nx generate @semantic-icons/nx-generators:simple-icons | |
- run: npx nx generate @semantic-icons/nx-generators:ionicons | |
- run: npx nx generate @semantic-icons/nx-generators:remixicon | |
- run: npx nx generate @semantic-icons/nx-generators:feather-icons | |
- run: npx nx generate @semantic-icons/nx-generators:material-design-icons | |
- run: npx nx generate @semantic-icons/nx-generators:fontawesome | |
- name: Setup Git | |
run: | | |
git config user.name "${{ github.actor }}" | |
git config user.email "${{ github.actor }}@users.noreply.github.com" | |
- name: Commit changes | |
run: | | |
git add . | |
[[ $(git status --porcelain) ]] && git commit -m "feat: generate icons" || echo "nothing to commit" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |