chore(deps): bump glob in the npm_and_yarn group across 1 directory #169
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
| # Builds package and publishes it on npm. | |
| # Triggered on pushes to develop, master and release branches | |
| name: CD | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| - release-* | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| environment: upload | |
| permissions: | |
| id-token: write # Required by Akeyless | |
| contents: write | |
| packages: read | |
| steps: | |
| - name: Use NodeJS v1 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Import Secrets | |
| id: import-secrets | |
| uses: LanceMcCarthy/akeyless-action@v3 | |
| with: | |
| access-id: ${{ secrets.GH_AKEYLESS_ACCESS_ID }} | |
| static-secrets: | | |
| { | |
| "/WebComponents/prod/tokens/GH_TOKEN": "GH_TOKEN", | |
| "/WebComponents/prod/tokens/PROGRESS_NPM_REGISTRY_TOKEN": "NPM_TOKEN" | |
| } | |
| export-secrets-to-environment: false | |
| - name: Check out branch | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # Fetch all branches | |
| - name: Install modules | |
| run: npm ci --ignore-scripts | |
| - name: Lint | |
| run: npm run lint | |
| shell: bash | |
| - name: Publish release | |
| run: npx semantic-release | |
| env: | |
| NPM_TOKEN: ${{ steps.import-secrets.outputs.NPM_TOKEN }} | |
| GH_TOKEN: ${{ steps.import-secrets.outputs.GH_TOKEN }} |