Skip to content

ci: done

ci: done #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
concurrency:
group: Release
cancel-in-progress: false
jobs:
lint:
uses: ./.github/workflows/lint.yml
green-light:
if: always()
needs:
- lint
runs-on: ubuntu-latest
steps:
- uses: re-actors/alls-green@release/v1
id: all-green
with:
jobs: ${{ toJSON(needs)}}
npm:
needs:
- green-light
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: ./.github/actions/prepare
- name: Build
run: pnpm run build
- name: Release
env:
GITHUB_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > ~/.npmrc
#!/bin/bash
if ! pnpm can-npm-publish; then
exit 0
fi
pnpm publish --access public