Skip to content

5.0.22-dev.0

5.0.22-dev.0 #156

Workflow file for this run

name: publish
on:
release:
types: [published]
# support manual release in case something goes wrong and needs to be repeated or tested
workflow_dispatch:
inputs:
tag:
description: tag that needs to publish
type: string
required: true
jobs:
# parses the package.json version and detects prerelease tag (ex: beta from 4.4.4-beta.0)
getDistTag:
outputs:
tag: ${{ steps.distTag.outputs.tag }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name || inputs.tag }}
- uses: salesforcecli/github-workflows/.github/actions/getPreReleaseTag@main
id: distTag
npm:
uses: salesforcecli/github-workflows/.github/workflows/npmPublish.yml@main
needs: [getDistTag]
with:
tag: ${{ needs.getDistTag.outputs.tag || 'latest' }}
githubTag: ${{ github.event.release.tag_name || inputs.tag }}
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
build-lite-version:
runs-on: ubuntu-latest
steps:
- name: Build lite version
run: |
# update package.json name to @oclif/plugin-plugins-lite
jq '.name = "@oclif/plugin-plugins-lite"' package.json > temp.json && mv temp.json package.json
yarn remove yarn npm
yarn install
publish-lite-version:
uses: salesforcecli/github-workflows/.github/workflows/npmPublish.yml@main
needs: [getDistTag, npm, build-lite-version]
with:
tag: ${{ needs.getDistTag.outputs.tag || 'latest' }}
githubTag: ${{ github.event.release.tag_name || inputs.tag }}
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}