chore: release v0.1.0-beta.17 #24
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: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Set Timezone | |
run: sudo timedatectl set-timezone "Asia/Shanghai" | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- run: npx changelogithub | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
binary: | |
name: Bundle binary for ${{ matrix.target }} | |
runs-on: ${{ matrix.os }} | |
env: | |
binary: anime | |
archive: anime-${{ matrix.target }}.${{ matrix.archive }} | |
checksum: anime-${{ matrix.target }}-sha256sum.txt | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: linux | |
os: ubuntu-latest | |
dist: ./packages/cli/bin/anime | |
archive: tar.gz | |
- target: macos | |
os: macos-latest | |
dist: ./packages/cli/bin/anime | |
archive: zip | |
- target: windows | |
os: windows-latest | |
dist: .\packages\cli\bin\anime.exe | |
archive: zip | |
steps: | |
- uses: szenius/[email protected] | |
with: | |
timezoneLinux: "Asia/Shanghai" | |
timezoneMacos: "Asia/Shanghai" | |
timezoneWindows: "China Standard Time" | |
- uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/[email protected] | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: pnpm | |
- name: Install | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
- name: Test | |
run: | | |
pnpm test:ci | |
${{ matrix.dist }} --version | |
${{ matrix.dist }} --help | |
- name: Create archive (linux) | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
tar -czvf ${{ env.archive }} -C $(dirname ${{ matrix.dist }}) $(basename ${{ matrix.dist }}) | |
sha256sum ${{ env.archive }} > ${{ env.checksum }} | |
- name: Create archive (macos) | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: | | |
zip -j ${{ env.archive }} ${{ matrix.dist }} | |
shasum -a 256 ${{ env.archive }} > ${{ env.checksum }} | |
- name: Create archive (windows) | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: | | |
Compress-Archive -DestinationPath ${{ env.archive }} -Path ${{ matrix.dist }} | |
Get-FileHash ${{ env.archive }} -Algorithm SHA256 | Out-File ${{ env.checksum }} | |
- name: Upload artifacts archive | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.archive }} | |
path: ${{ env.archive }} | |
- name: Upload artifacts checksum | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.checksum }} | |
path: ${{ env.checksum }} | |
- name: Upload binary to release | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
overwrite: true | |
tag: ${{ github.ref }} | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.archive }} | |
asset_name: ${{ env.archive }} | |
- name: Upload checksum to release | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
overwrite: true | |
tag: ${{ github.ref }} | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.checksum }} | |
asset_name: ${{ env.checksum }} |