Update eventsEMFlist.json #151
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
on: [push,workflow_call] | |
jobs: | |
build: | |
name: Create compil events file | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# with: | |
# node-version: '16' | |
- name: Node Install | |
run: npm ci | |
- name: run compil Cobalt | |
run: node scripts/compilCobalt.js | |
- name: run compil Pwn | |
run: node scripts/compilPwn.js | |
- name: run compil EMF | |
run: node scripts/compilEMF.js | |
- name: run compil Afup | |
run: node scripts/compilAfup.js | |
- name: run compil global | |
run: node scripts/compil.js | |
- name: run generate RSS | |
run: node scripts/generateRSSFeed.js | |
- name: Commit files | |
run: | | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
git add --all | |
if [ -n "$(git status --porcelain)" ]; then | |
git commit -am "Update compil file" | |
fi | |
git push |