Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
test release
Browse files Browse the repository at this point in the history
  • Loading branch information
tejavar committed Oct 26, 2023
1 parent 337fdab commit ae107a4
Show file tree
Hide file tree
Showing 22 changed files with 42 additions and 42 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
prerequisites:
permissions:
pull-requests: write
uses: pulumiverse/infra/.github/workflows/[email protected]
uses: tejavar/infra/.github/workflows/[email protected]
with:
provider: concourse
goversion: 1.20.x
build:
needs: prerequisites
uses: pulumiverse/infra/.github/workflows/[email protected]
uses: tejavar/infra/.github/workflows/[email protected]
with:
provider: concourse
goversion: 1.20.x
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ builds:
ldflags:
- -s
- -w
- -X github.com/pulumiverse/pulumi-concourse/provider/pkg/version.Version={{.Tag}}
- -X github.com/tejavar/pulumi-concourse/provider/pkg/version.Version={{.Tag}}
main: ./cmd/pulumi-resource-concourse/
changelog:
skip: true
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ PROJECT_NAME := Pulumi Concourse Resource Provider

PACK := concourse
PACKDIR := sdk
PROJECT := github.com/pulumiverse/pulumi-concourse
NODE_MODULE_NAME := @pulumiverse/concourse
NUGET_PKG_NAME := Pulumiverse.Concourse
PROJECT := github.com/tejavar/pulumi-concourse
NODE_MODULE_NAME := @tejavar/concourse
NUGET_PKG_NAME := tejavar.Concourse

PROVIDER := pulumi-resource-${PACK}
CODEGEN := pulumi-gen-${PACK}
Expand Down
2 changes: 1 addition & 1 deletion deployment-templates/.goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ builds:
- linux
ldflags:
# The line below MUST align with the module in current provider/go.mod
- -X github.com/pulumiverse/pulumi-concourse/provider/pkg/version.Version={{.Tag }}
- -X github.com/tejavar/pulumi-concourse/provider/pkg/version.Version={{.Tag }}
main: ./cmd/pulumi-resource-concourse/
changelog:
skip: true
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as concourse from "@pulumiverse/concourse";
import * as concourse from "@tejavar/concourse";

const random = new concourse.Random("my-random", { length: 24 });

Expand Down
2 changes: 1 addition & 1 deletion provider/cmd/pulumi-gen-concourse/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
pythongen "github.com/pulumi/pulumi/pkg/v3/codegen/python"
"github.com/pulumi/pulumi/pkg/v3/codegen/schema"
"github.com/pulumi/pulumi/sdk/v3/go/common/util/contract"
providerVersion "github.com/pulumiverse/pulumi-concourse/provider/pkg/version"
providerVersion "github.com/tejavar/pulumi-concourse/provider/pkg/version"
)

// TemplateDir is the path to the base directory for code generator templates.
Expand Down
4 changes: 2 additions & 2 deletions provider/cmd/pulumi-resource-concourse/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ package main

import (
_ "embed"
"github.com/pulumiverse/pulumi-concourse/provider/pkg/provider"
"github.com/pulumiverse/pulumi-concourse/provider/pkg/version"
"github.com/tejavar/pulumi-concourse/provider/pkg/provider"
"github.com/tejavar/pulumi-concourse/provider/pkg/version"
)

var providerName = "concourse"
Expand Down
14 changes: 7 additions & 7 deletions provider/cmd/pulumi-resource-concourse/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"category/ci",
"kind/native"
],
"homepage": "https://github.com/pulumiverse",
"homepage": "https://github.com/tejavar",
"license": "Apache-2.0",
"repository": "https://github.com/pulumiverse/pulumi-concourse",
"publisher": "Pulumiverse",
"repository": "https://github.com/tejavar/pulumi-concourse",
"publisher": "tejavar",
"types": {
"concourse:index:Info": {
"description": "Server Information",
Expand Down Expand Up @@ -140,20 +140,20 @@
"packageReferences": {
"Pulumi": "3.*"
},
"rootNamespace": "Pulumiverse"
"rootNamespace": "tejavar"
},
"go": {
"generateResourceContainerTypes": true,
"importBasePath": "github.com/pulumiverse/pulumi-concourse/sdk/go/concourse"
"importBasePath": "github.com/tejavar/pulumi-concourse/sdk/go/concourse"
},
"nodejs": {
"dependencies": {
"@pulumi/pulumi": "^3.0.0"
},
"packageName": "@pulumiverse/concourse"
"packageName": "@tejavar/concourse"
},
"python": {
"packageName": "pulumiverse_concourse",
"packageName": "tejavar_concourse",
"requires": {
"pulumi": ">=3.0.0,<4.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion provider/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/pulumiverse/pulumi-concourse/provider
module github.com/tejavar/pulumi-concourse/provider

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/GetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Pulumi.Serialization;
using Pulumi;

namespace Pulumiverse.Concourse.Inputs
namespace tejavar.Concourse.Inputs
{

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/JobArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Pulumi.Serialization;
using Pulumi;

namespace Pulumiverse.Concourse.Inputs
namespace tejavar.Concourse.Inputs
{

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/PipelineConfigArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Pulumi.Serialization;
using Pulumi;

namespace Pulumiverse.Concourse.Inputs
namespace tejavar.Concourse.Inputs
{

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/PutArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Pulumi.Serialization;
using Pulumi;

namespace Pulumiverse.Concourse.Inputs
namespace tejavar.Concourse.Inputs
{

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/TaskArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Pulumi.Serialization;
using Pulumi;

namespace Pulumiverse.Concourse.Inputs
namespace tejavar.Concourse.Inputs
{

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Pipeline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Pulumi.Serialization;
using Pulumi;

namespace Pulumiverse.Concourse
namespace tejavar.Concourse
{
[ConcourseResourceType("concourse:index:Pipeline")]
public partial class Pipeline : global::Pulumi.CustomResource
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Provider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Pulumi.Serialization;
using Pulumi;

namespace Pulumiverse.Concourse
namespace tejavar.Concourse
{
/// <summary>
/// The provider type for the concourse package.
Expand Down
8 changes: 4 additions & 4 deletions sdk/dotnet/Pulumiverse.Concourse.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Pulumiverse</Authors>
<Company>Pulumiverse</Company>
<Authors>tejavar</Authors>
<Company>tejavar</Company>
<Description>A Pulumi package for creating and managing Concourse CI resources.</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/pulumiverse</PackageProjectUrl>
<RepositoryUrl>https://github.com/pulumiverse/pulumi-concourse</RepositoryUrl>
<PackageProjectUrl>https://github.com/tejavar</PackageProjectUrl>
<RepositoryUrl>https://github.com/tejavar/pulumi-concourse</RepositoryUrl>
<PackageIcon>logo.png</PackageIcon>

<TargetFramework>netcoreapp3.1</TargetFramework>
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Utilities.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// *** WARNING: this file was generated by pulumigen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

namespace Pulumiverse.Concourse
namespace tejavar.Concourse
{
static class Utilities
{
Expand Down Expand Up @@ -62,7 +62,7 @@ static class Utilities
static Utilities()
{
var assembly = global::System.Reflection.IntrospectionExtensions.GetTypeInfo(typeof(Utilities)).Assembly;
using var stream = assembly.GetManifestResourceStream("Pulumiverse.Concourse.version.txt");
using var stream = assembly.GetManifestResourceStream("tejavar.Concourse.version.txt");
using var reader = new global::System.IO.StreamReader(stream ?? throw new global::System.NotSupportedException("Missing embedded version.txt file"));
version = reader.ReadToEnd().Trim();
var parts = version.Split("\n");
Expand Down
2 changes: 1 addition & 1 deletion sdk/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/pulumiverse/pulumi-concourse/sdk/v3
module github.com/tejavar/pulumi-concourse/sdk/v3

go 1.18

Expand Down
6 changes: 3 additions & 3 deletions sdk/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@pulumiverse/concourse",
"name": "@tejavar/concourse",
"version": "${VERSION}",
"keywords": [
"pulumi",
"concourse",
"category/ci",
"kind/native"
],
"homepage": "https://github.com/pulumiverse",
"repository": "https://github.com/pulumiverse/pulumi-concourse",
"homepage": "https://github.com/tejavar",
"repository": "https://github.com/tejavar/pulumi-concourse",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
Expand Down
4 changes: 2 additions & 2 deletions sdk/python/pulumiverse_concourse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
{
"pkg": "concourse",
"mod": "index",
"fqn": "pulumiverse_concourse",
"fqn": "tejavar_concourse",
"classes": {
"concourse:index:Pipeline": "Pipeline"
}
Expand All @@ -26,7 +26,7 @@
{
"pkg": "concourse",
"token": "pulumi:providers:concourse",
"fqn": "pulumiverse_concourse",
"fqn": "tejavar_concourse",
"class": "Provider"
}
]
Expand Down
8 changes: 4 additions & 4 deletions sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def readme():
return "concourse Pulumi Package - Development Version"


setup(name='pulumiverse_concourse',
setup(name='tejavar_concourse',
version=VERSION,
description="A Pulumi package for creating and managing Concourse CI resources.",
long_description=readme(),
Expand All @@ -46,14 +46,14 @@ def readme():
'install': InstallPluginCommand,
},
keywords='pulumi concourse category/ci kind/native',
url='https://github.com/pulumiverse',
url='https://github.com/tejavar',
project_urls={
'Repository': 'https://github.com/pulumiverse/pulumi-concourse'
'Repository': 'https://github.com/tejavar/pulumi-concourse'
},
license='Apache-2.0',
packages=find_packages(),
package_data={
'pulumiverse_concourse': [
'tejavar_concourse': [
'py.typed',
'pulumi-plugin.json',
]
Expand Down

0 comments on commit ae107a4

Please sign in to comment.