CC-Visualizer #413
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: CC-Visualizer | |
on: | |
push: | |
branches: [ main ] | |
schedule: | |
- cron: "0 4 * * *" | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
stats-generation: | |
runs-on: ubuntu-latest | |
steps: | |
# Check out repository under $GITHUB_WORKSPACE, so the job can access it | |
- uses: actions/checkout@v2 | |
- name: Print Run ID | |
run: echo "Run ID:$GITHUB_RUN_ID" | |
- name: Print Git SHA | |
run: echo "Git SHA:$GITHUB_SHA" | |
# Set up JDK 17 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
# Cache dependencies | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
# Build the Java project with Maven | |
- name: Build with Maven | |
run: mvn -B clean install --file ./pom.xml | |
# Generate all statistics images | |
- name: Generate images | |
run: mvn spring-boot:run | |
# Commit all changed files to the repository | |
- name: Commit to the repo | |
run: | | |
git config --global user.name gaurish | |
git config --global user.email [email protected] | |
git add . | |
# Force the build to succeed, even if no files were changed | |
git commit -m 'Update generated files' || true | |
git push |