crota challenges #170
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-files: | |
needs: make-template | |
name: Clean 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: Compile and run java | |
run: | | |
chmod +x "./.github/compile_run.sh" | |
"./.github/compile_run.sh" clean | |
- 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 "Clean files action" | |
git push -f origin master | |
fi |