add publisher-id for registry publication (#107) #44
Workflow file for this run
This file contains hidden or 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: Create release draft | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "v*" | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| cache: npm | |
| cache-dependency-path: ui/package-lock.json | |
| - name: Build project | |
| id: build | |
| env: | |
| "NEXT_PUBLIC_DEV": "false" | |
| run: | | |
| dist_file_suffix="${{ github.ref_type == 'tag' && github.ref_name || github.event.pull_request.head.sha || github.sha }}" | |
| mkdir -p releases/ | |
| cur_dir="$(pwd)" | |
| cd ui/ | |
| npm ci | |
| npm run build | |
| dist_dir="../nodes/web/static/" | |
| cd "$dist_dir" | |
| dist_file_full="${cur_dir}/releases/comfystream-uikit-${dist_file_suffix}.zip" | |
| zip -DTr9q "${dist_file_full}" ./ | |
| echo "dist_file=${dist_file_full}" >> $GITHUB_OUTPUT | |
| cd - | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: release-artifacts | |
| path: releases/ | |
| - name: Create release | |
| if: ${{ github.ref_type == 'tag' }} | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: ${{ steps.build.outputs.dist_file }} | |
| make_latest: true | |
| generate_release_notes: true |