downgrade to 1.20.1 and make profiles #2
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: Export Packwiz | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
markdown: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run mcman export packwiz | |
run: mcman export packwiz | |
- name: Commit and push changes | |
run: | | |
git diff --quiet || (git add . && git commit -m "Update packwiz pack" && git push) |