mirror of
https://github.com/valitydev/swag-messages.git
synced 2024-11-06 01:35:23 +00:00
26 lines
648 B
YAML
26 lines
648 B
YAML
|
name: 'Frontend: Publish'
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: ['master', 'main']
|
||
|
|
||
|
jobs:
|
||
|
configured:
|
||
|
uses: valitydev/action-frontend/.github/workflows/configured.yml@v0.1
|
||
|
publish:
|
||
|
name: Publish
|
||
|
runs-on: ubuntu-latest
|
||
|
needs: configured
|
||
|
if: needs.configured.outputs.exists == 'true'
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: valitydev/action-frontend/setup@v0.1
|
||
|
- run: npm ci
|
||
|
- name: Build
|
||
|
run: npm run build
|
||
|
- name: Codegen
|
||
|
run: npm run codegen
|
||
|
- uses: valitydev/action-frontend/publish@v0.1
|
||
|
with:
|
||
|
npm-token: ${{ secrets.NPM_TOKEN }}
|
||
|
directory: ./lib
|