Skip to content

Commit

Permalink
Merge branch 'main' into 11-move-sleepcycles-ops-to-runners-cronjobs
Browse files Browse the repository at this point in the history
  • Loading branch information
akyriako authored May 28, 2024
2 parents cbcb229 + 7f01de1 commit d7c24bb
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release Charts
on:
push:
branches:
- main

jobs:
chart-release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,4 @@ $(KO): $(LOCALBIN)
test -s $(LOCALBIN)/ko || GOBIN=$(LOCALBIN) go install github.com/google/ko@latest

ko-build-runner: ko
cd runners && ko build --bare .
cd runners && ko build --bare .
2 changes: 1 addition & 1 deletion charts/sleepcycles/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ version: 0.2.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.2.0"
appVersion: "0.2.0"

0 comments on commit d7c24bb

Please sign in to comment.