-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ignacio Anaya
committed
Jun 1, 2022
1 parent
8ca29dc
commit 3eaf219
Showing
1 changed file
with
2 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 🚀 | ||
|
@@ -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 }} |