Skip to content

Bump com.github.ben-manes:gradle-versions-plugin from 0.42.0 to 0.51.0 #94

Bump com.github.ben-manes:gradle-versions-plugin from 0.42.0 to 0.51.0

Bump com.github.ben-manes:gradle-versions-plugin from 0.42.0 to 0.51.0 #94

name: Build and Deploy
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Build
run: |
./gradlew run
# deploy to github pages only when on master
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
id: extract_branch
- name: Checkout
uses: actions/[email protected]
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
- name: Build
run: |
./gradlew run
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: output
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}