Skip to content

Configure Renovate

Configure Renovate #18

Workflow file for this run

name: CI
on: [push, pull_request, release]
jobs:
main:
runs-on: ubuntu-20.04
env:
# webpack build needs a lot of memory
NODE_OPTIONS: --max_old_space_size=4096
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
# Ensures all refs and tags are fetched so "git describe --always" is working as expected
fetch-depth: 0
# A workaround for annotated tags with actions/checkout@v2
# see https://github.com/actions/checkout/issues/290
- name: Fetch Tags correctly
run: git fetch --force --tags
- name: Cache gradle dependencies
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Cache node modules
uses: actions/cache@v2
with:
path: |
~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Run unit tests
run: ./gradlew check jibDockerBuild
- name: Prepare cache
run: |
rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
rm -fr $HOME/.gradle/caches/*/plugin-resolution/
- name: Before Deploy
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')
run: |
pip3 install --upgrade pip
pip3 install docker-ci-deploy
docker logout
docker login -u "${{ secrets.DOCKER_USERNAME }}" -p "${{ secrets.DOCKER_PASSWORD }}"
- name: Deploy master branch as latest
if: github.ref == 'refs/heads/master'
run: python -m docker_ci_deploy --tag latest -- cfreak/breeze
# ${GITHUB_REF/refs\/tags\//} returns the tag name from 'refs/tags/TAG_NAME'
- name: Deploy tags
if: startsWith(github.ref, 'refs/tags')
run: python -m docker_ci_deploy --version-latest --version ${GITHUB_REF/refs\/tags\//} --version-semver cfreak/codefreak