Skip to content

Commit

Permalink
Switch to OCR registry
Browse files Browse the repository at this point in the history
  • Loading branch information
tibeer committed Jan 19, 2024
1 parent 47b6017 commit 300c309
Show file tree
Hide file tree
Showing 14 changed files with 60 additions and 146 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
---
name: Release

"on":
push:
branches:
- 'main'
workflow_dispatch:

jobs:
gather:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.charts }}
steps:
- name: Clone current repository
uses: actions/checkout@v3

- name: Gather all folders
id: matrix
run: |
value="charts=["
for chart in $(ls -1 | grep -v -e LICENSE -e README.md); do
value="${value}\"${chart}\", "
done
value="${value}]"
echo "${value}" >> $GITHUB_OUTPUT
- name: Debug
run: |
echo "${{ steps.matrix.outputs.charts }}"
release:
runs-on: ubuntu-latest
needs:
- gather
strategy:
matrix:
charts: $${{ fromJSON(needs.gather.outputs.matrix) }}
steps:
- name: Debug
run: |
echo "${{ matrix.value }}"
# - name: Clone current repository
# uses: actions/checkout@v3
#
# - name: Chart | Push
# uses: appany/[email protected]
# with:
# name: "${{ matrix.value }}"
# repository: tibeer
# tag: 1.0.0
# path: "./${{ matrix.value }}"
# registry: ghcr.io
# registry_username: ${{ github.repository_owner }}
# registry_password: ${{ github.token }}
# #update_dependencies: 'true'
11 changes: 2 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,6 @@ This repository contains some helm charts.
## Usage

```sh
helm repo add tibeer https://tibeer.github.io/helm-charts/ # the trailing backslack is important
helm repo update tibeer
```

## Update this

```sh
helm package <your-chart-folder>
helm repo index --url https://tibeer.github.io/helm-charts/ .
# helm repo add tibeer .... <- no longer required as you can install directly, e.g.
helm install homer oci://ghcr.io/tibeer/homer-startpage --wait
```
Binary file removed fastapi-cockroachdb-mock-1.0.0.tgz
Binary file not shown.
Binary file removed hedgedoc-0.1.0.tgz
Binary file not shown.
Binary file removed homer-startpage-1.0.0.tgz
Binary file not shown.
137 changes: 0 additions & 137 deletions index.yaml

This file was deleted.

Binary file removed invidious-1.0.0.tgz
Binary file not shown.
Binary file removed jellyfin-1.0.0.tgz
Binary file not shown.
Binary file removed nginx-welcome-1.0.0.tgz
Binary file not shown.
Binary file removed ntfy-1.0.0.tgz
Binary file not shown.
Binary file removed olivetin-1.0.0.tgz
Binary file not shown.
Binary file removed openvpn-as-1.0.0.tgz
Binary file not shown.
Binary file removed uptime-kuma-1.0.0.tgz
Binary file not shown.
Binary file removed vaultwarden-1.0.0.tgz
Binary file not shown.

0 comments on commit 300c309

Please sign in to comment.