add workflow action #1
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: Addon Builder | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
addon-builder: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build and Push | |
run: | | |
python addons_xml_generator3.py | |
git config --local user.email "[email protected]" | |
git config --local user.name "WolfieTech-CI" | |
git add . || : | |
git commit -m '[bot] Packaging addons and updating addons.xml' || : | |
git push || : |