[filigran-icon][version] v0.5.1 #16
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: | |
- main | |
- issue/* | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
env: | |
ACTIONS_RUNNER_DEBUG: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
registry-url: 'https://npm.pkg.github.com' | |
- name: Extract commit message | |
id: extract_message | |
run: | | |
COMMIT_MESSAGE=$(git log -1 --pretty=%B) | |
echo "commit-message=${COMMIT_MESSAGE}" >> $GITHUB_ENV | |
- name: Check Filigran-icon | |
if: startsWith(env.commit-message, '[filigran-icon][version]') | |
run: echo "package=filigran-icon" >> $GITHUB_ENV | |
- name: Check Filigran-ui | |
if: startsWith(env.commit-message, '[filigran-ui][version]') | |
run: echo "package=filigran-ui" >> $GITHUB_ENV | |
- name: Debug output | |
run: | | |
echo "Commit Message: ${{ env.commit-message }}" | |
echo "Package: ${{ env.package }}" | |
echo "Version: ${{ env.version }}" | |
- name: Install dependencies | |
if: env.package != '' | |
run: npm install && npm install rimraf --global | |
- name: Publish Filigran UI | |
if: env.package == 'filigran-ui' | |
run: npm run publish:filigran-ui | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Publish Filigran Icon | |
if: env.package == 'filigran-icon' | |
run: npm run publish:filigran-icon | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |