fix: use git.kalinow.ski

This commit is contained in:
2025-12-06 02:00:31 -05:00
parent 4f829f9e0a
commit 0419f548d2
4 changed files with 9 additions and 9 deletions

View File

@@ -96,7 +96,7 @@ jobs:
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
{ {
echo "SCHEMA_CHANGES<<$EOF"; echo "SCHEMA_CHANGES<<$EOF";
schema-tools compare -r github://api.github.com/kiterun -p incus -o "${{ inputs.default_branch }}" -n --local-path=provider/cmd/pulumi-resource-incus/schema.json; schema-tools compare -r github://api.git.kalinow.ski/kiterun -p incus -o "${{ inputs.default_branch }}" -n --local-path=provider/cmd/pulumi-resource-incus/schema.json;
echo "$EOF"; echo "$EOF";
} >> "$GITHUB_ENV" } >> "$GITHUB_ENV"
- if: inputs.is_pr && inputs.is_automated == false && github.actor != 'dependabot[bot]' - if: inputs.is_pr && inputs.is_automated == false && github.actor != 'dependabot[bot]'

View File

@@ -92,7 +92,7 @@ jobs:
{ {
echo 'summary<<EOF' echo 'summary<<EOF'
if [[ "$LAST_VERSION" != "No stable release" ]]; then if [[ "$LAST_VERSION" != "No stable release" ]]; then
schema-tools compare --provider="incus" --old-commit="$LAST_VERSION" --repository="github://api.github.com/kiterun" --new-commit="--local-path=provider/cmd/pulumi-resource-incus/schema.json" schema-tools compare --provider="incus" --old-commit="$LAST_VERSION" --repository="github://api.git.kalinow.ski/kiterun" --new-commit="--local-path=provider/cmd/pulumi-resource-incus/schema.json"
fi fi
echo 'EOF' echo 'EOF'
} >> "$GITHUB_OUTPUT" } >> "$GITHUB_OUTPUT"

View File

@@ -33,5 +33,5 @@ linters-settings:
- blank # Blank section: contains all blank imports. - blank # Blank section: contains all blank imports.
- default # Default section: contains all imports that could not be matched to another section type. - default # Default section: contains all imports that could not be matched to another section type.
- prefix(github.com/pulumi/) # Custom section: groups all imports with the github.com/pulumi/ prefix. - prefix(github.com/pulumi/) # Custom section: groups all imports with the github.com/pulumi/ prefix.
- prefix(github.com/kiterun/pulumi-incus) # Custom section: local imports - prefix(git.kalinow.ski/kiterun/pulumi-incus) # Custom section: local imports
custom-order: true custom-order: true

View File

@@ -177,7 +177,7 @@ func Provider() tfbridge.ProviderInfo {
Golang: &tfbridge.GolangInfo{ Golang: &tfbridge.GolangInfo{
// Set where the SDK is going to be published to. // Set where the SDK is going to be published to.
ImportBasePath: path.Join( ImportBasePath: path.Join(
"git.kalinow.ski/nimbus/pulumi-incus/sdk/", "git.kalinow.ski/kiterun/pulumi-incus/sdk/",
tfbridge.GetModuleMajorVersion(version.Version), tfbridge.GetModuleMajorVersion(version.Version),
"go", "go",
mainPkg, mainPkg,