update workflows
This commit is contained in:
parent
4bc006d97f
commit
ecaefc115c
2 changed files with 6 additions and 5 deletions
|
@ -12,7 +12,7 @@ jobs:
|
||||||
build:
|
build:
|
||||||
name: Build Plugins
|
name: Build Plugins
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container: catthehacker/ubuntu:act-latest
|
container: www.coastalcommits.com/cswimr/actions:yarn
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -28,7 +28,7 @@ jobs:
|
||||||
lint:
|
lint:
|
||||||
name: Lint Plugins
|
name: Lint Plugins
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container: catthehacker/ubuntu:act-latest
|
container: www.coastalcommits.com/cswimr/actions:yarn
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
|
@ -6,7 +6,7 @@ jobs:
|
||||||
publish:
|
publish:
|
||||||
name: Publish plugins
|
name: Publish plugins
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container: catthehacker/ubuntu:act-latest
|
container: www.coastalcommits.com/cswimr/actions:yarn
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -21,12 +21,13 @@ jobs:
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 18
|
node-version: 18
|
||||||
|
cache: 'yarn'
|
||||||
- name: Configure Git
|
- name: Configure Git
|
||||||
run: |
|
run: |
|
||||||
git config --global user.name "${GITHUB_ACTOR}"
|
git config --global user.name "${GITHUB_ACTOR}"
|
||||||
git config --global user.email "${GITHUB_ACTOR}@noreply@coastalcommits.com"
|
git config --global user.email "${GITHUB_ACTOR}@noreply@coastalcommits.com"
|
||||||
git remote set-url origin git@www.coastalcommits.com:${{ github.repository }}
|
git remote set-url origin git@www.coastalcommits.com:${{ github.repository }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: yarn install --frozen-lockfile
|
||||||
- name: Publish plugins to Release branch
|
- name: Publish plugins to Release branch
|
||||||
run: npm run publish
|
run: yarn publish
|
||||||
|
|
Loading…
Reference in a new issue