chore(deps-dev): bump @adobe/css-tools from 4.3.1 to 4.3.2 (#52) #63
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: NPM Publish | |
on: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
release_build: | |
name: Release Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- id: setup | |
uses: ./.github/actions/setup_workspace | |
- run: pnpm type-check | |
- run: pnpm test | |
- run: pnpm build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: dist | |
release_publish: | |
name: Release Publish | |
needs: release_build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- id: setup | |
uses: ./.github/actions/setup_workspace | |
- uses: actions/download-artifact@v3 | |
with: | |
name: dist | |
path: dist | |
- run: ls -l | |
- run: ls -l dist/ | |
- run: SHELL=bash pnpm setup | |
- run: pnpm add -g semantic-release @semantic-release/git conventional-changelog-conventionalcommits | |
- run: pnpm exec semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |