feat(icon): add Dune and OPAM file type icons (OCaml build system fil… #34
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 Wiki Page Icons List | |
env: | |
NODE_VERSION: 16.14.2 | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
update: | |
name: Update Wiki Pages | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: Setting up Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Update Wiki Page Icons List | |
timeout-minutes: 2 | |
run: npx --yes vscode-icons/wpilgenerator | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |