mirror of
https://github.com/easingthemes/ssh-deploy.git
synced 2024-04-28 00:37:18 +08:00
CI - add steps names
This commit is contained in:
parent
9483c83d88
commit
a04c641775
10
.github/workflows/version-bump-publish.yml
vendored
10
.github/workflows/version-bump-publish.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: version-bump-publish
|
name: Manage veresion
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
@ -11,15 +11,17 @@ jobs:
|
|||||||
name: checkout
|
name: checkout
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout
|
||||||
- uses: actions/setup-node@v1
|
uses: actions/checkout@v2
|
||||||
|
- name: Setup NodeJS and run build
|
||||||
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: 12
|
node-version: 12
|
||||||
- run: |
|
- run: |
|
||||||
npm install
|
npm install
|
||||||
npm run lint
|
npm run lint
|
||||||
npm run build
|
npm run build
|
||||||
- name: bump and pub
|
- name: Setup version and git tag
|
||||||
if: ${{ github.event.inputs.tag != '' }}
|
if: ${{ github.event.inputs.tag != '' }}
|
||||||
run: |
|
run: |
|
||||||
npm version ${{ github.event.inputs.tag }}
|
npm version ${{ github.event.inputs.tag }}
|
||||||
|
Loading…
Reference in New Issue
Block a user