Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump sharp from 0.33.2 to 0.33.5 in /site #119

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
cc2add4
Exit Node CRD v1.1: Allow multiple services per exit node (wip)
korewaChino Jun 4, 2024
2b480dc
refactor: use ExitNodeStatus::new constructor
korewaChino Jun 4, 2024
3f14f19
update CRD and version number
korewaChino Jun 4, 2024
1807bd4
oops
korewaChino Jun 4, 2024
8061fe4
update helm chart
korewaChino Jun 4, 2024
9026f99
fix!: make CRD version v2 because we can't put subvers in it
korewaChino Jul 9, 2024
0a0de6f
run cargo fmt --all
korewaChino Jul 9, 2024
20a7361
docs: Update instructions to use stable branch
korewaChino Jul 12, 2024
c46e378
chore(ci): update stable branch instead
korewaChino Jul 12, 2024
3b12aa3
chore(deps): bump the npm_and_yarn group in /site with 2 updates
dependabot[bot] Jul 2, 2024
12ba0b3
chore(deps): bump uuid from 1.7.0 to 1.9.1
dependabot[bot] Jul 1, 2024
7cc7907
chore(deps): bump serde from 1.0.197 to 1.0.204
dependabot[bot] Jul 12, 2024
1581c8d
chore(deps): bump @astrojs/check from 0.5.6 to 0.8.1 in /site
dependabot[bot] Jul 15, 2024
418f368
warn when no environment is set, fix config indentation
korewaChino Jul 27, 2024
75d43db
Create SECURITY.md
lleyton Jul 27, 2024
740f382
docs: example auth
korewaChino Jul 27, 2024
7ffce61
fix(pwgen): Replace some special characters in the password generator…
korewaChino Jul 27, 2024
2ddd0e9
inline auth for server
korewaChino Jul 27, 2024
e71f080
feat(packaging): Build Docker images using sccache for faster caching
korewaChino Jul 27, 2024
3921cfa
feat: Also link binaries using mold
korewaChino Jul 27, 2024
46f0df3
revert sccache builds, as GHA does not like it
korewaChino Jul 27, 2024
c1f4872
chore(deps): bump sharp from 0.33.2 to 0.33.5 in /site
dependabot[bot] Aug 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
target/
.env
Dockerfile
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- "Cargo.toml"
- ".dockerignore"
- ".github/workflows/docker.yml"
branches: ["main", "staging"]
branches: ["main", "stable"]
# Publish semver tags as releases.
tags: ["v*.*.*"]
pull_request:
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/helm-oci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Docker

on:
schedule:
- cron: "15 14 * * *"
push:
paths:
- "charts/**"

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

jobs:
docker:
uses: appany/helm-oci-chart-releaser@v0.3.0
with:
name: chisel-operator
repository: 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' # Defaults to false
permissions:
contents: read
packages: write
# This is used to complete the identity challenge
# with sigstore/fulcio when running outside of PRs.
id-token: write
Loading