diff --git a/.config/dictionaries/project.dic b/.config/dictionaries/project.dic index 61470dcae13..ece094a570b 100644 --- a/.config/dictionaries/project.dic +++ b/.config/dictionaries/project.dic @@ -225,6 +225,7 @@ preopen preopened preopens preprod +projectcatalyst Prokhorenko proptest psql diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd537c46290..5afe2c28674 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,9 @@ permissions: jobs: ci: if: ${{ !github.event.pull_request.draft }} - uses: input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.8.1 + uses: input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.9.0 with: - forge_version: 0.19.1 + forge_version: 0.20.0 test_reporting: if: ${{ !github.event.pull_request.draft }} diff --git a/.github/workflows/generate-allure-report.yml b/.github/workflows/generate-allure-report.yml index 19ec070a231..9f76d6d83a4 100644 --- a/.github/workflows/generate-allure-report.yml +++ b/.github/workflows/generate-allure-report.yml @@ -27,16 +27,16 @@ jobs: - uses: actions/checkout@v4 - name: Install Forge - uses: input-output-hk/catalyst-forge/actions/install@ci/v1.8.1 + uses: input-output-hk/catalyst-forge/actions/install@ci/v1.9.0 with: - version: 0.19.1 + version: 0.20.0 if: always() - name: Setup CI - uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.8.1 + uses: input-output-hk/catalyst-forge/actions/setup@ci/v1.9.0 - name: Get catalyst libs unit test report - uses: input-output-hk/catalyst-forge/actions/run@ci/v1.8.1 + uses: input-output-hk/catalyst-forge/actions/run@ci/v1.9.0 if: always() continue-on-error: true with: diff --git a/blueprint.cue b/blueprint.cue index f33388faeef..593cea9423f 100644 --- a/blueprint.cue +++ b/blueprint.cue @@ -9,6 +9,10 @@ global: { registries: [ ci.providers.aws.ecr.registry, ] + release: docs: { + bucket: "docs.dev.projectcatalyst.io" + url: "https://docs.dev.projectcatalyst.io/" + } providers: { aws: { region: "eu-central-1" diff --git a/docs/blueprint.cue b/docs/blueprint.cue index fba451cb220..04acef1858b 100644 --- a/docs/blueprint.cue +++ b/docs/blueprint.cue @@ -1,2 +1,18 @@ version: "1.0.0" -project: name: "libs-docs" +project: +{ + name: "libs-docs" + + release: { + docs: { + on: { + merge: {} + pr: {} + } + + config: { + name: "libs" + } + } + } +}