Skip to content

Commit

Permalink
rename provider name
Browse files Browse the repository at this point in the history
  • Loading branch information
ericogr committed Oct 27, 2021
1 parent b9ecb65 commit 77cc49b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 38 deletions.
74 changes: 37 additions & 37 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,43 @@ env:
PROVIDER: slack
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
prerequisites:
name: prerequisites
runs-on: ubuntu-latest
strategy:
matrix:
goversion: [1.16.x]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
with:
lfs: true
- name: Unshallow clone for tags
run: git fetch --prune --unshallow --tags
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.goversion }}
- name: Install pulumictl
uses: jaxxstorm/[email protected]
with:
repo: pulumi/pulumictl
- name: Install Pulumi CLI
uses: pulumi/[email protected]
with:
pulumi-version: 3.0.0-rc.1
- name: Build gen binaries
run: make gen
- name: Build provider binary
run: make provider
- run: git status --porcelain
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: pulumi-${{ env.PROVIDER }}
path: ${{ github.workspace }}/bin
- name: Test Provider Library
run: make test_provider
build_sdk:
name: build_sdks
runs-on: ubuntu-latest
Expand Down Expand Up @@ -75,43 +112,6 @@ jobs:
with:
name: ${{ matrix.language }}-sdk.tar.gz
path: ${{ github.workspace}}/sdk/${{ matrix.language }}.tar.gz
prerequisites:
name: prerequisites
runs-on: ubuntu-latest
strategy:
matrix:
goversion: [1.16.x]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
with:
lfs: true
- name: Unshallow clone for tags
run: git fetch --prune --unshallow --tags
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.goversion }}
- name: Install pulumictl
uses: jaxxstorm/[email protected]
with:
repo: pulumi/pulumictl
- name: Install Pulumi CLI
uses: pulumi/[email protected]
with:
pulumi-version: 3.0.0-rc.1
- name: Build gen binaries
run: make gen
- name: Build provider binary
run: make provider
- run: git status --porcelain
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: pulumi-${{ env.PROVIDER }}
path: ${{ github.workspace }}/bin
- name: Test Provider Library
run: make test_provider
publish:
name: publish
needs: build_sdk
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ before:
hooks:
- make gen
builds:
- binary: pulumi-slack
- binary: pulumi-resource-slack
dir: provider
env:
- CGO_ENABLED=0
Expand Down

0 comments on commit 77cc49b

Please sign in to comment.