Skip to content

Commit 3e5784b

Browse files
committed
First commit
0 parents  commit 3e5784b

File tree

17 files changed

+1957
-0
lines changed

17 files changed

+1957
-0
lines changed

.github/workflows/push-image.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Cache Image
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
image-cache:
8+
name: Cache Image
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
with:
13+
fetch-depth: 2
14+
- run: git checkout HEAD^
15+
- uses: whoan/docker-build-with-cache-action@v5
16+
with:
17+
image_name: joshuasbrown/cpp-py-formatter
18+
image_tag: latest
19+
username: ${{ secrets.DOCKER_USER }}
20+
password: ${{ secrets.DOCKER_TOKEN }}
21+
push_git_tag: true

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

0 commit comments

Comments
 (0)