Skip to content

Instantly share code, notes, and snippets.

View pathakashish's full-sized avatar

Ashish Pathak pathakashish

View GitHub Profile
@pathakashish
pathakashish / circleci.yml
Last active July 18, 2022 06:39
CI/CD for simple spring boot app which uses docker. Here is github action and circle ci file which do the same thing.
version: 2.1
jobs:
build:
docker:
- image: gradle:alpine
steps:
- checkout
- run: ./gradlew bootJar
- persist_to_workspace: