add names to the workflow steps
All checks were successful
build / Build plugins (push) Successful in 15s
All checks were successful
build / Build plugins (push) Successful in 15s
This commit is contained in:
parent
5c2733de26
commit
d1491893c6
2 changed files with 22 additions and 12 deletions
|
@ -14,9 +14,13 @@ jobs:
|
|||
runs-on: docker
|
||||
container: catthehacker/ubuntu:act-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 18
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Build plugins
|
||||
run: npm run build
|
||||
|
|
|
@ -4,16 +4,22 @@ on: workflow_dispatch
|
|||
|
||||
jobs:
|
||||
publish:
|
||||
name: Publish plugins to Release branch
|
||||
name: Publish plugins
|
||||
runs-on: docker
|
||||
container: catthehacker/ubuntu:act-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 18
|
||||
- run: git config --global user.name "${GITHUB_ACTOR}"
|
||||
- run: git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
|
||||
- run: git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
|
||||
- run: npm ci
|
||||
- run: npm run publish
|
||||
- name: Configure Git
|
||||
run: |
|
||||
git config --global user.name "${GITHUB_ACTOR}"
|
||||
git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
|
||||
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Publish plugins to Release branch
|
||||
run: npm run publish
|
||||
|
|
Loading…
Reference in a new issue