... #198
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: | |
make-template: | |
name: Make template | |
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: Compile and run java | |
run: | | |
chmod +x "./.github/compile_run.sh" | |
"./.github/compile_run.sh" template | |
- name: Commit & push | |
run: | | |
git config --local user.name actions-user | |
git config --local user.email "[email protected]" | |
if ! git diff --exit-code; then | |
git add -A | |
git commit -m "Make template action" | |
git push -f origin master | |
fi | |
clean-sort: | |
needs: make-template | |
name: Clean and sort files | |
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: Give permissions | |
run: chmod +x "./.github/compile_run.sh" | |
- name: Run clean | |
run: ./.github/compile_run.sh clean | |
- name: Commit & push clean | |
run: | | |
git config --local user.name actions-user | |
git config --local user.email "[email protected]" | |
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: | | |
git config --local user.name actions-user | |
git config --local user.email "[email protected]" | |
if ! git diff --exit-code; then | |
git add -A | |
git commit -m "Sort files action" | |
git push -f origin master | |
fi |