Skip to content

Commit

Permalink
update: removing dotnet for now
Browse files Browse the repository at this point in the history
  • Loading branch information
videmsky committed Aug 26, 2024
1 parent d6aafec commit 60460d5
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ jobs:
with:
node-version: ${{ env.NODEVERSION }}
registry-url: https://registry.npmjs.org
- name: Setup DotNet
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4
with:
dotnet-version: ${{ env.DOTNETVERSION }}
# - name: Setup DotNet
# uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4
# with:
# dotnet-version: ${{ env.DOTNETVERSION }}
- name: Setup Python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5
with:
Expand All @@ -75,8 +75,8 @@ jobs:
run: echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- name: Build SDK
run: make build_${{ matrix.language }}
# - name: Check worktree clean
# run: ./ci-scripts/ci/check-worktree-is-clean
- name: Check worktree clean
run: ./ci-scripts/ci/check-worktree-is-clean
- name: Compress SDK folder
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }}
.
Expand All @@ -91,7 +91,7 @@ jobs:
language:
- nodejs
- python
- dotnet
# - dotnet
- go

prerequisites:
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
PYPI_USERNAME: "__token__"
PUBLISH_PYPI: true
PUBLISH_NPM: true
PUBLISH_NUGET: true
PUBLISH_NUGET: false
DOTNETVERSION: |
6.0.x
3.1.301
Expand Down Expand Up @@ -104,15 +104,15 @@ jobs:
python-version: ${{ env.PYTHONVERSION }}
- name: Build SDK
run: make build_${{ matrix.language }}
# - name: Check worktree clean
# run: |
# git update-index -q --refresh
# if ! git diff-files --quiet; then
# >&2 echo "error: working tree is not clean, aborting!"
# git status
# git diff
# exit 1
# fi
- name: Check worktree clean
run: |
git update-index -q --refresh
if ! git diff-files --quiet; then
>&2 echo "error: working tree is not clean, aborting!"
git status
git diff
exit 1
fi
- if: ${{ matrix.language == 'python' && env.PUBLISH_PYPI == 'true' }}
name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ To use from Go, use `go get` to grab the latest version of the library:
go get github.com/pulumi/pulumi-redpanda/sdk/go/...
```

### .NET
<!-- ### .NET
To use from .NET, install using `dotnet add package`:
```bash
dotnet add package Pulumi.Redpanda
```
``` -->

## Configuration

Expand Down
4 changes: 2 additions & 2 deletions docs/installation-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ To use from Go, use `go get` to grab the latest version of the library:
go get github.com/pulumiverse/pulumi-redpanda/sdk/v3
```

### .NET
<!-- ### .NET
To use from .NET, install using `dotnet add package`:
```bash
dotnet add package Pulumiverse.Redpanda
```
``` -->

## Configuration

Expand Down

0 comments on commit 60460d5

Please sign in to comment.