diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cc4753f5110a..e2f311718131 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -78,43 +78,10 @@ jobs: node-version: ${{ fromJson(inputs.version-set).nodejs }} registry-url: https://registry.npmjs.org always-auth: true - - name: Download release artifacts - if: ${{ matrix.language != 'go' }} - run: | - mkdir -p artifacts - gh release download "v${PULUMI_VERSION}" --dir ./artifacts --pattern 'sdk-${{ matrix.language }}-*' - find artifacts - name: Publish Packages run: | make -C sdk/${{ matrix.language}} publish - s3-blobs: - name: s3 blobs - runs-on: ubuntu-latest - steps: - - name: Checkout Repo - uses: actions/checkout@v3 - with: - ref: ${{ inputs.ref }} - - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v1 - with: - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-region: us-east-2 - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - role-duration-seconds: 3600 - role-external-id: upload-pulumi-release - role-session-name: pulumi@githubActions - role-to-assume: ${{ secrets.AWS_UPLOAD_ROLE_ARN }} - - name: Download release artifacts - run: | - mkdir -p artifacts - gh release download "v${PULUMI_VERSION}" --dir ./artifacts --pattern 'pulumi-*' - find artifacts - - name: Publish Blobs - run: | - aws s3 sync artifacts s3://get.pulumi.com/releases/sdk --acl public-read - pr: # Relies on the Go SDK being published to update pkg name: PR @@ -166,16 +133,3 @@ jobs: cache: enable - name: Repository Dispatch run: ${{ matrix.job.run-command }} - - - update-homebrew-tap: - name: Update Homebrew Tap - if: inputs.run-dispatch-commands && !contains(inputs.version, '-') - uses: ./.github/workflows/release-homebrew-tap.yml - permissions: - contents: read - with: - ref: ${{ inputs.ref }} - version: ${{ inputs.version }} - dry-run: false - secrets: inherit