Skip to content

chore: v0.0.1 initial release - DevCodex Copilot Agent Plugin #1

chore: v0.0.1 initial release - DevCodex Copilot Agent Plugin

chore: v0.0.1 initial release - DevCodex Copilot Agent Plugin #1

Workflow file for this run

name: Publish to GitHub Packages
on:
release:
types: [created]
push:
tags:
- 'v*.*.*'
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://npm.pkg.github.com'
scope: '@vextjs'
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}