Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
17 changes: 17 additions & 0 deletions .github/release-please/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"release-type": "terraform-module",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"initial-version": "0.1.0",
"packages": {
"terraform-modules/spectrum": {
"component": "terraform-module-spectrum"
},
"terraform-modules/k3s": {
"component": "terraform-module-k3s"
},
"terraform-modules/talos": {
"component": "terraform-module-talos"
}
}
}
1 change: 1 addition & 0 deletions .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: "release-please"

on:
push:
branches:
- "main"

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"

jobs:
release-please:
runs-on: ubuntu-latest

steps:
- name: Run release-please
id: release
uses: googleapis/release-please-action@v4
with:
target-branch: main
token: ${{ secrets.FLUENCEBOT_RELEASE_PLEASE_PAT }}
config-file: .github/release-please/config.json
manifest-file: .github/release-please/manifest.json

- name: Show output from release-please
if: steps.release.outputs.releases_created
env:
RELEASE_PLEASE_OUTPUT: ${{ toJSON(steps.release.outputs) }}
run: echo "${RELEASE_PLEASE_OUTPUT}" | jq
2 changes: 1 addition & 1 deletion .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
run: |
case ${{ inputs.command }} in
create)
terraform apply -target local_sensitive_file.kubeconfig -auto-approve
terraform apply -target module.talos.kubeconfig.path -auto-approve
terraform apply -auto-approve
;;
destroy)
Expand Down
13 changes: 7 additions & 6 deletions flux/core/lightmare/app/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ spec:
- kind: ConfigMap
name: chain-adapter-config
optional: false
# values:
# operator:
# image:
# repository: fluencelabs/lightmare
# tag: main
# pullPolicy: Always
values:
operator:
config:
ccp:
image:
repository: "fluencelabs/ccp-cu-worker"
tag: "0.14.3"
2 changes: 1 addition & 1 deletion flux/core/lightmare/app/repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ spec:
interval: 5m0s
url: oci://registry-1.docker.io/fluencelabs/lightmare-chart
ref:
tag: 0.1.0
tag: 0.1.1
Loading