feat: prepare for the initial release. (#8) #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- package.json | |
jobs: | |
check: | |
name: Check version | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.version.outputs.version }} | |
version_changed: ${{ steps.version.outputs.changed }} | |
steps: | |
- uses: taiki-e/checkout-action@v1 | |
- name: Check version changes | |
uses: EndBug/version-check@v2 | |
id: version | |
with: | |
static-checking: localIsNew | |
file-url: https://unpkg.com/coc-oxc@latest/package.json | |
file-name: package.json | |
- name: Set version name | |
if: steps.version.outputs.changed == 'true' | |
run: | | |
echo "Version change found! New version: ${{ steps.version.outputs.version }} (${{ steps.version.outputs.version_type }})" | |
release: | |
needs: check | |
if: needs.check.outputs.version_changed == 'true' | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taiki-e/checkout-action@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
registry-url: 'https://registry.npmjs.org' | |
node-version: 16 | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Build | |
run: npm run build | |
- name: Publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npm publish --dry-run --tag latest --provenance --access public |