Skip to content

Commit 7b03727

Browse files
authored
Use common yaml for builds (#6)
* Use common yaml for builds Signed-off-by: Josh Minor <[email protected]>
1 parent 91a0f95 commit 7b03727

File tree

4 files changed

+32
-150
lines changed

4 files changed

+32
-150
lines changed

.github/workflows/docker-buildx.yml

Lines changed: 0 additions & 104 deletions
This file was deleted.

.github/workflows/helm.yml

Lines changed: 0 additions & 46 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Docker Image BuildX CI and Publish
2+
3+
# This workflow uses actions that are not certified by GitHub.
4+
# They are provided by a third-party and are governed by
5+
# separate terms of service, privacy policy, and support
6+
# documentation.
7+
8+
on:
9+
schedule:
10+
- cron: "19 16 * * *"
11+
push:
12+
branches: ["main"]
13+
# Publish semver tags as releases.
14+
tags: ["v*.*.*"]
15+
pull_request:
16+
branches: ["main"]
17+
workflow_dispatch:
18+
19+
jobs:
20+
build:
21+
uses: smarter-project/reusable-workflows/.github/workflows/smarter-org-docker-buildx.yml@main
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# release.yaml
2+
name: Release Charts
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
release:
11+
uses: smarter-project/reusable-workflows/.github/workflows/smarter-org-helm.yml@main

0 commit comments

Comments
 (0)