Merge pull request #14 from mococa/feat/add-dot-html-strip-feature #19
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
name: Publish to NPM | |
on: | |
push: | |
paths: | |
- "pulumi/aws/package.json" | |
- ".github/workflows/pulumi-aws-publish.yml" | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "16.14.0" | |
registry-url: "https://registry.npmjs.org" | |
- name: Install Pulumi AWS Dependencies | |
working-directory: pulumi/aws | |
run: yarn install | |
- name: Build Pulumi AWS package | |
working-directory: pulumi/aws | |
run: yarn run build | |
- name: Publish Pulumi AWS package on NPM | |
working-directory: pulumi/aws | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |