TA-3725: Add list command options to filter by variable value and typ… #162
Workflow file for this run
This file contains hidden or 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: Build and publish Workflow | |
| on: | |
| push: | |
| branches: [ master ] | |
| paths-ignore: | |
| - 'package.json' | |
| - '.github/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Npm install and npm build | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup Node with Github Registry | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: '20' | |
| registry-url: https://npm.pkg.github.com/celonis | |
| scope: '@celonis' | |
| - name: Yarn Install | |
| run: yarn install | |
| - name: Yarn Build | |
| run: yarn build | |
| - name: Yarn Test | |
| run: yarn test | |
| - name: Move files to build | |
| run: | | |
| cp README.md dist/README.md | |
| cp LICENSE dist/LICENSE | |
| - name: Publish to Github Registry | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: cd dist/ && npm publish | |
| - name: Setup publish to Npm Registry | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: '16' | |
| registry-url: https://registry.npmjs.org/ | |
| scope: '@celonis' | |
| - name: Publish to Npm Registry | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: cd dist/ && npm publish --access public | |
| - uses: actions/checkout@master | |
| name: Checkout Master | |
| with: | |
| fetch-depth: '0' |