Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: FyraLabs/chisel-operator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.3
Choose a base ref
...
head repository: FyraLabs/chisel-operator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: stable
Choose a head ref
Loading
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
target/
.env
Dockerfile
*.log
41 changes: 41 additions & 0 deletions .github/workflows/helm-oci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Helm OCI

on:
schedule:
- cron: "15 14 * * *"
push:
paths:
- "charts/**"
- ".github/workflows/helm-oci.yml"

branches: ["main", "stable"]
# Publish semver tags as releases.
# tags: ["v*.*.*"]
pull_request:
branches: ["main"]
workflow_dispatch:

jobs:
docker:
if: contains(github.ref, 'refs/tags/v') || contains(github.ref, 'refs/heads/stable')
permissions:
contents: read
packages: write
# This is used to complete the identity challenge
# with sigstore/fulcio when running outside of PRs.
id-token: write
# uses: appany/helm-oci-chart-releaser@v0.3.0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: appany/helm-oci-chart-releaser@v0.3.0
with:
name: chisel-operator
repository: fyralabs/chisel-operator
tag: 0.1.0
path: charts/chisel-operator
registry: ghcr.io
registry_username: ${{ github.actor }}
registry_password: ${{ secrets.GITHUB_TOKEN }}
# update_dependencies: true

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -4,4 +4,5 @@
/test

.env
.vscode/
.vscode/
*.log
Loading