Skip to content

Commit

Permalink
Merge pull request #426 from spegel-org/feature/artifacthub-verified
Browse files Browse the repository at this point in the history
Add artifacthub-repo.yml to verify repository
  • Loading branch information
phillebaba authored Apr 9, 2024
2 parents 2537c99 + e22d2a7 commit 55b2377
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/artifacthub.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: artifacthub

on:
push:
branches: ["main"]
paths: ["charts/spegel/artifacthub-repo.yml"]

permissions:
contents: read
packages: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v4
with:
submodules: true
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Setup ORAS
uses: oras-project/setup-oras@v1
- name: Push Artifact Hub metadata
run: oras push ghcr.io/spegel-org/helm-charts/spegel:artifacthub.io --config /dev/null:application/vnd.cncf.artifacthub.config.v1+yaml charts/spegel/artifacthub-repo.yml:application/vnd.cncf.artifacthub.repository-metadata.layer.v1.yaml
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:
- name: Publish Helm chart to GHCR
id: helm
run: |
rm charts/spegel/artifacthub-repo.yml
yq -i '.image.digest = "${{ steps.build.outputs.DIGEST }}"' charts/spegel/values.yaml
helm package --app-version ${{ steps.prep.outputs.VERSION }} --version ${{ steps.prep.outputs.VERSION }} charts/spegel
helm push spegel-${{ steps.prep.outputs.VERSION }}.tgz oci://ghcr.io/spegel-org/helm-charts 2> .digest
Expand Down
4 changes: 4 additions & 0 deletions charts/spegel/artifacthub-repo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
repositoryID: 8122016b-c465-4eaf-be87-f51423aa76f1
owners:
- name: Philip Laine
email: philip.laine@gmail.com

0 comments on commit 55b2377

Please sign in to comment.