-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: work * refactor: move agones crds to a dedicated package * feat(sdk): generate sdk using buf * feat(operator): add Dockerfile * chore: remove last parts with Go * ci: cache Rust dependencies * refactor: remove old java sdk * feat: generate agones sdk with buf * chore: add semantic-release * chore: added commitlint * chore: fix versions * ci: install buf
- Loading branch information
1 parent
977c085
commit f4646c5
Showing
233 changed files
with
39,914 additions
and
26,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[build] | ||
target-dir = "dist/rust" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file | ||
# Ignore build and test binaries. | ||
bin/ | ||
testbin/ | ||
.git/ | ||
.gradle/ | ||
build/ | ||
dist/ | ||
node_modules/ | ||
docs/.docusaurus/ | ||
docs/build/ | ||
docs/node_modules/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
{ | ||
"extends": ["config:base", ":semanticCommits"], | ||
"automerge": false, | ||
"extends": [ | ||
"config:recommended", | ||
":pinAllExceptPeerDependencies", | ||
":automergeMinor" | ||
], | ||
"dependencyDashboard": false, | ||
"enabledManagers": ["github-actions", "gomod", "gradle"], | ||
"enabledManagers": ["github-actions", "npm", "cargo", "gradle"], | ||
"labels": ["type:dependencies :wrench:"], | ||
"prCreation": "not-pending", | ||
"reviewersFromCodeOwners": false, | ||
"stabilityDays": 3, | ||
"minimumReleaseAge": "14 days", | ||
"semanticCommits": "enabled", | ||
"updateNotScheduled": false, | ||
"vulnerabilityAlerts": { | ||
"labels": ["type:dependencies :wrench:", "priority:critical :fire:"] | ||
"addLabels": ["priority:critical :fire:"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: docs | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
TARGET_NODE_VERSION: '18' | ||
|
||
concurrency: | ||
group: docs | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
pages: write | ||
id-token: write | ||
|
||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Use Node.js ${{ env.TARGET_NODE_VERSION }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.TARGET_NODE_VERSION }} | ||
cache: npm | ||
|
||
- name: Install Buf | ||
uses: bufbuild/buf-setup-action@v1 | ||
|
||
- name: Setup Pages | ||
uses: actions/configure-pages@v3 | ||
|
||
- name: Install Node.js dependencies | ||
run: npm ci | ||
|
||
- name: Build Docusaurus | ||
uses: mansagroup/nrwl-nx-action@v3 | ||
with: | ||
targets: build | ||
projects: docs | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: docs/build | ||
|
||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 |
Oops, something went wrong.