... #426
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: Main | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
main: | |
name: Main | |
if: github.repository_owner == 'justrealmilk' | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: oracle | |
java-version: 17 | |
- name: Config | |
run : | | |
git config --local user.name actions-user | |
git config --local user.email "[email protected]" | |
chmod +x "./.github/compile_run.sh" | |
- name: Run template | |
run: ./.github/compile_run.sh template | |
- name: Commit & push template | |
run: | | |
if ! git diff --exit-code; then | |
git add -A | |
git commit -m "Make template action" | |
git push -f origin master | |
fi | |
- name: Run clean | |
run: ./.github/compile_run.sh clean | |
- name: Commit & push clean | |
run: | | |
if ! git diff --exit-code; then | |
git add -A | |
git commit -m "Clean files action" | |
git push -f origin master | |
fi | |
- name: Run sort | |
run: ./.github/compile_run.sh sort | |
- name: Commit & push sort | |
run: | | |
if ! git diff --exit-code; then | |
git add -A | |
git commit -m "Sort files action" | |
git push -f origin master | |
fi | |
- name: Run missing | |
run: ./.github/compile_run.sh missing | |
- name: Commit & push missing | |
run: | | |
if ! git diff --exit-code; then | |
git add -A | |
git commit -m "Make toTranslate.json" | |
git push -f origin master | |
fi |