Skip to content

Commit be8700a

Browse files
Garth PickellCopilot
andcommitted
Initial commit
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 parents  commit be8700a

42 files changed

Lines changed: 2208 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/build.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Build and Push
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- "v*"
9+
workflow_dispatch:
10+
11+
permissions:
12+
contents: read
13+
packages: write
14+
15+
jobs:
16+
docker:
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Check out repo
21+
uses: actions/checkout@v4
22+
23+
- name: Set up Docker Buildx
24+
uses: docker/setup-buildx-action@v4
25+
26+
- name: Log in to GHCR
27+
uses: docker/login-action@v4
28+
with:
29+
registry: ghcr.io
30+
username: ${{ github.actor }}
31+
password: ${{ secrets.GITHUB_TOKEN }}
32+
33+
- name: Build and push discovered Dockerfiles
34+
env:
35+
OWNER: ${{ github.repository_owner }}
36+
REPO: ${{ github.event.repository.name }}
37+
REF_NAME: ${{ github.ref_name }}
38+
RUN_NUMBER: ${{ github.run_number }}
39+
run: docker buildx bake --push

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*/docker-compose.yml
2+
*secret*
3+
node_modules

0 commit comments

Comments
 (0)