ci: release.yml 재작성 + publish.yml 추가

release.yml: Node 매트릭스 제거, Node 20.x 단일, actions v3→v4 업그레이드.
deprecated upload-release-asset@v1 → softprops/action-gh-release@v2.
단일 패키지 npm ci && npm run build 로 통합.
publish.yml: workflow_dispatch 수동 트리거 npm publish 추가.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-09 15:44:13 +09:00
parent 2d3167cffe
commit 4b89a498f9
2 changed files with 37 additions and 44 deletions

25
.github/workflows/publish.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Publish to npm
on:
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Publish
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

View File

@@ -8,55 +8,23 @@ jobs:
build-and-release:
runs-on: macos-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies and build nfd2nfc
run: |
cd nfd2nfc
npm install
npm run build
- name: Install dependencies
run: npm ci
- name: Install dependencies and build MACOS-APP
run: |
cd MACOS-APP
npm install
npm run build
- name: Build
run: npm run build
- name: Upload NFD2NFC executable
uses: actions/upload-release-asset@v1
- name: Upload DMG assets
uses: softprops/action-gh-release@v2
with:
files: dist/*.dmg
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./nfd2nfc/dist/NFD2NFC-$(uname -s).zip
asset_name: NFD2NFC-$(uname -s).zip
asset_content_type: application/zip
- name: Upload MacOS .app
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./MACOS-APP/dist/*.app.zip
asset_name: MacApp.zip
asset_content_type: application/zip
- name: Upload MacOS .dmg
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./MACOS-APP/dist/*.dmg
asset_name: MacApp.dmg
asset_content_type: application/octet-stream