gauntlet-cswimr-plugins/.forgejo/workflows/publish.yaml
cswimr 846780fe0c
All checks were successful
build / Build plugins (push) Successful in 16s
use coastalcommits instead of github (oops)
2024-10-20 09:25:45 -04:00

25 lines
802 B
YAML

name: publish
on: workflow_dispatch
jobs:
publish:
name: Publish plugins
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- 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 }}@www.coastalcommits.com/${{ github.repository }}
- name: Install dependencies
run: npm ci
- name: Publish plugins to Release branch
run: npm run publish