2024-10-17 15:20:23 -04:00
|
|
|
name: publish
|
|
|
|
|
|
|
|
on: workflow_dispatch
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
2024-10-20 09:22:51 -04:00
|
|
|
name: Publish plugins
|
2024-10-20 09:20:58 -04:00
|
|
|
runs-on: docker
|
|
|
|
container: catthehacker/ubuntu:act-latest
|
2024-10-17 15:20:23 -04:00
|
|
|
steps:
|
2024-10-20 09:22:51 -04:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v4
|
2024-10-17 15:20:23 -04:00
|
|
|
with:
|
|
|
|
node-version: 18
|
2024-10-20 09:22:51 -04:00
|
|
|
- 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"
|
2024-10-20 09:25:45 -04:00
|
|
|
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@www.coastalcommits.com/${{ github.repository }}
|
2024-10-20 09:22:51 -04:00
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
|
|
|
- name: Publish plugins to Release branch
|
|
|
|
run: npm run publish
|