Release #15
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: | |
workflow_dispatch: | |
inputs: | |
# https://github.com/release-it/release-it#readme | |
releaseItArgs: | |
description: release-it arguments | |
type: string | |
required: true | |
jobs: | |
release: | |
name: Create and publish new release | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Set git user: @${{ github.triggering_actor }}" | |
run: | | |
git config --global user.name '${{ github.triggering_actor }}' | |
git config --global user.email '${{ github.triggering_actor }}@users.noreply.github.com' | |
- name: Set up npm | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}"> ~/.npmrc | |
npm whoami | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Setup | |
uses: wyvox/action@v1 | |
with: | |
persist-credentials: true | |
fetch-depth: 0 | |
pnpm-args: --frozen-lockfile | |
- name: release-it ${{ inputs.releaseItArgs }} | |
run: $(pnpm bin)/release-it ${{ inputs.releaseItArgs }} | |
working-directory: ember-link | |
env: | |
# Expose the auto-provided `secrets.GITHUB_TOKEN` as an environment | |
# variable of the same name. This intentionally doesn't use | |
# `secrets.GH_TOKEN`, as the elevated permissions are not required. | |
# The `git push` issued by `release-it` still works on protected | |
# branches, as `release-it` completely defers to `git`, which was | |
# setup correctly with `secrets.GH_TOKEN` by `actions/checkout`. | |
# | |
# https://github.com/release-it/release-it/blob/master/docs/ci.md#github-actions | |
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }} |