mirror of
https://github.com/valitydev/swag-url-shortener.git
synced 2024-11-06 01:15:19 +00:00
27 lines
649 B
YAML
27 lines
649 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
|