mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-27 19:41:44 -04:00
58 lines
2.0 KiB
YAML
58 lines
2.0 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*.*.*"
|
|
|
|
jobs:
|
|
release:
|
|
permissions:
|
|
id-token: write # Required for OIDC
|
|
contents: write # for softprops/action-gh-release to create GitHub release
|
|
runs-on: ubuntu-latest
|
|
environment: release
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- name: Install ldid
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install git build-essential libplist-dev libssl-dev openssl qemu-user-binfmt pkg-config
|
|
cd /tmp
|
|
git clone https://gitlab.com/opensource-saurik/ldid.git
|
|
cd ldid
|
|
git checkout c2f8abf013b22c335f44241a6a552a7767e73419
|
|
git submodule update --init
|
|
gcc -I. -c -o lookup2.o lookup2.c
|
|
g++ -std=c++11 -o ldid lookup2.o ldid.cpp -I. -lcrypto $(pkg-config --cflags --libs libplist-2.0) -lxml2
|
|
sudo mv ldid /usr/local/bin
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
|
|
with:
|
|
standalone: true
|
|
- name: Setup Node
|
|
run: pnpm runtime -g set node 25.6.1
|
|
timeout-minutes: 2
|
|
- name: pnpm install
|
|
run: pnpm install
|
|
- name: Publish Packages
|
|
continue-on-error: true
|
|
env:
|
|
# setting the "npm_config_//registry.npmjs.org/:_authToken" env variable directly doesn't work.
|
|
# probably "pnpm release" doesn't pass auth tokens to child processes
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
run: |
|
|
npm config set "//registry.npmjs.org/:_authToken" "${NPM_TOKEN}" # pnpm config set is broken
|
|
pnpm release
|
|
- name: Copy Artifacts
|
|
run: pnpm run copy-artifacts
|
|
- name: Generate release description
|
|
run: pnpm run make-release-description
|
|
- name: Release
|
|
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
|
|
with:
|
|
draft: true
|
|
files: dist/*
|
|
body_path: RELEASE.md
|