Bump version to 1.14.2 #14
Workflow file for this run
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: Generate and Release bundled CLI | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
settings: | |
- host: macos-latest | |
target: macos-x64 | |
- host: windows-latest | |
target: win-x64 | |
extension: .exe | |
- host: ubuntu-latest | |
target: linux-x64 | |
runs-on: ${{ matrix.settings.host }} | |
name: dev build - ${{ matrix.settings.target }} - node@16 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- run: yarn | |
- run: yarn run build | |
# remove dev dependencies before packaging | |
- run: yarn workspaces focus --all --production | |
# package final binaries | |
- run: | | |
yarn dlx pkg . -t node16-${{ matrix.settings.target }} -o bundle/dcli-${{ matrix.settings.target }}${{ matrix.settings.extension }} -C GZip "--public" "--public-packages" "tslib,thirty-two" "--no-bytecode" | |
- name: Archive binary artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dcli-${{ matrix.settings.target }} | |
path: bundle/dcli-${{ matrix.settings.target }}${{ matrix.settings.extension }} | |
retention-days: 1 | |
release: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download all artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
path: artifacts | |
- name: List artifacts | |
run: ls -R artifacts | |
shell: bash | |
- name: Release | |
uses: softprops/[email protected] | |
with: | |
files: | | |
artifacts/dcli-linux-x64/dcli-linux-x64 | |
artifacts/dcli-macos-x64/dcli-macos-x64 | |
artifacts/dcli-win-x64/dcli-win-x64.exe |