chore: add npmignore #46
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 Emoji Info | |
on: | |
- push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Generate | |
run: | | |
node build.js | |
- name: Check Workspace | |
id: workspace-check | |
run: echo "::set-output name=status::$(git status -s)" | |
- name: Generate new commit | |
if: steps.workspace-check.outputs.status | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add -A | |
git commit -m "build: update emoji info" | |
git push origin main |