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

Commit

Permalink
Remove useless steps.
Browse files Browse the repository at this point in the history
  • Loading branch information
dipack95 committed Nov 27, 2023
1 parent f62832f commit 02cab4c
Showing 1 changed file with 0 additions and 46 deletions.
46 changes: 0 additions & 46 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit 02cab4c

Please sign in to comment.