mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-02-04 13:16:08 +08:00
* fix(): revert ded build changes * fix(); revert stuff * chore(): revert dev build * chore(): fix merge
19 lines
381 B
YAML
19 lines
381 B
YAML
name: 'Ionic Dev Build'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
dev-build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 15.x
|
|
- name: Create Dev Build
|
|
run: npm run release.dev -- --skip-prompt
|
|
shell: bash
|
|
env:
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|