Skip to content

Commit

Permalink
fix: rollback temp release changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignacio Anaya committed Jun 1, 2022
1 parent 8ca29dc commit 3eaf219
Showing 1 changed file with 2 additions and 56 deletions.
58 changes: 2 additions & 56 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ on:
push:
tags:
- 'v*'
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ YOUR NPM TOKEN HERE }}
NPM_REGISTRY_URL: https://registry.npmjs.org
PUBLISH_NPM: true

jobs:
release:
name: release 🚀
Expand Down Expand Up @@ -45,53 +39,5 @@ jobs:
with:
version: latest
args: release --rm-dist

# publish_sdk:
# name: Publish SDKs
# runs-on: ubuntu-latest
# needs: release
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v2

# - 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]

# - name: Setup Node
# uses: actions/setup-node@v1
# with:
# node-version: ${{matrix.nodeversion}}
# registry-url: ${{env.NPM_REGISTRY_URL}}

# - name: Build SDK
# run: make build_${{ matrix.language }}_sdk

# - 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 == 'nodejs' && env.PUBLISH_NPM == 'true' }}
# uses: JS-DevTools/npm-publish@v1
# with:
# access: "public"
# token: ${{ env.NPM_TOKEN }}
# package: ${{github.workspace}}/sdk/nodejs/bin/package.json
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

0 comments on commit 3eaf219

Please sign in to comment.