Skip to content

Don't instantiate or use Regexp when string.start_with? will do (#3… #1914

Don't instantiate or use Regexp when string.start_with? will do (#3…

Don't instantiate or use Regexp when string.start_with? will do (#3… #1914

Workflow file for this run

name: Release
on:
push:
branches:
- 'main'
jobs:
release:
name: Final
if: ${{ github.repository == 'primer/view_components' }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
- name: Install dependencies
run: |
npm ci
bundle install
# Use the primer GitHub App for authentication.
# See: https://github.com/organizations/primer/settings/apps/primer
- id: get-access-token
uses: camertron/github-app-installation-auth-action@v1
with:
app-id: ${{ vars.PRIMER_APP_ID_SHARED }}
private-key: ${{ secrets.PRIMER_APP_PRIVATE_KEY_SHARED }}
client-id: ${{ vars.PRIMER_APP_CLIENT_ID_SHARED }}
client-secret: ${{ secrets.PRIMER_APP_CLIENT_SECRET_SHARED }}
installation-id: ${{ vars.PRIMER_APP_INSTALLATION_ID_SHARED }}
- name: Create release pull request or publish to npm
id: changesets
uses: changesets/action@v1
with:
title: Release Tracking
version: npm run changeset:version
publish: script/changeset-publish
env:
GITHUB_TOKEN: ${{ steps.get-access-token.outputs.access-token }}
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN_SHARED }}