[FEATURE] Ajout de l'icon hearing utilisé pour l'oralisation (Pix-15289) #192
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: release | |
on: | |
push: | |
branches: | |
- dev | |
repository_dispatch: | |
types: [ 'deploy' ] | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
- run: npm ci | |
- run: npm run build | |
- uses: 1024pix/pix-actions/release@main | |
id: semantic | |
with: | |
npmPublish: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.PIX_SERVICE_ACTIONS_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_ACCESS_TOKEN }} | |
- name: Deploy storybook to Github Pages | |
run: npm run deploy-storybook -- --ci | |
env: | |
GH_TOKEN: 1024pix:${{ secrets.GITHUB_TOKEN }} |