mirror of
https://github.com/runablehq/mini-browser.git
synced 2026-09-20 13:45:46 +08:00
121 lines
3.4 KiB
YAML
121 lines
3.4 KiB
YAML
name: Publish Package
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- package.json
|
|
tags:
|
|
- "v*"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
id-token: write
|
|
contents: write
|
|
|
|
concurrency:
|
|
group: publish-${{ github.ref }}
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
environment: production
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Bun
|
|
uses: oven-sh/setup-bun@v2
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: "24"
|
|
registry-url: "https://registry.npmjs.org"
|
|
package-manager-cache: false
|
|
|
|
- name: Detect release
|
|
id: release
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
package_name="$(node -e "const fs = require('node:fs'); const pkg = JSON.parse(fs.readFileSync('package.json', 'utf8')); console.log(pkg.name);")"
|
|
package_version="$(node -e "const fs = require('node:fs'); const pkg = JSON.parse(fs.readFileSync('package.json', 'utf8')); console.log(pkg.version);")"
|
|
tag="v${package_version}"
|
|
|
|
if [[ ! "${package_version}" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[0-9A-Za-z.-]+)?(\+[0-9A-Za-z.-]+)?$ ]]; then
|
|
echo "Invalid package.json version: ${package_version}"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "${GITHUB_REF}" == refs/tags/* && "${GITHUB_REF_NAME}" != "${tag}" ]]; then
|
|
echo "Tag ${GITHUB_REF_NAME} does not match package.json version ${package_version}."
|
|
exit 1
|
|
fi
|
|
|
|
git fetch --tags --force origin
|
|
|
|
tag_exists="false"
|
|
if git rev-parse --verify --quiet "refs/tags/${tag}" >/dev/null; then
|
|
tag_exists="true"
|
|
tag_commit="$(git rev-list -n 1 "${tag}")"
|
|
|
|
if [[ "${tag_commit}" != "${GITHUB_SHA}" ]]; then
|
|
echo "Tag ${tag} points to ${tag_commit}, but this run is publishing ${GITHUB_SHA}."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
published="false"
|
|
if npm view "${package_name}@${package_version}" version >/dev/null 2>&1; then
|
|
published="true"
|
|
fi
|
|
|
|
{
|
|
echo "package_name=${package_name}"
|
|
echo "package_version=${package_version}"
|
|
echo "tag=${tag}"
|
|
echo "tag_exists=${tag_exists}"
|
|
echo "published=${published}"
|
|
} >> "${GITHUB_OUTPUT}"
|
|
|
|
- name: Install dependencies
|
|
run: bun install --frozen-lockfile
|
|
|
|
- name: Typecheck
|
|
run: bunx tsc --noEmit
|
|
|
|
- name: Build
|
|
run: npm run build --if-present
|
|
|
|
- name: Test
|
|
run: npm test --if-present
|
|
|
|
- name: Publish to npm
|
|
if: steps.release.outputs.published != 'true'
|
|
run: npm publish --access public --tag latest
|
|
|
|
- name: Create GitHub release
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
TAG: ${{ steps.release.outputs.tag }}
|
|
TAG_EXISTS: ${{ steps.release.outputs.tag_exists }}
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
if gh release view "${TAG}" >/dev/null 2>&1; then
|
|
echo "Release ${TAG} already exists."
|
|
exit 0
|
|
fi
|
|
|
|
if [[ "${TAG_EXISTS}" == "true" ]]; then
|
|
gh release create "${TAG}" --verify-tag --title "${TAG}" --generate-notes
|
|
else
|
|
gh release create "${TAG}" --target "${GITHUB_SHA}" --title "${TAG}" --generate-notes
|
|
fi
|