mirror of
https://github.com/primer/css.git
synced 2024-12-22 21:51:39 +03:00
use org workflows for final release
This commit is contained in:
parent
811e171c39
commit
82606de585
44
.github/workflows/release.yml
vendored
44
.github/workflows/release.yml
vendored
@ -7,42 +7,8 @@ on:
|
||||
jobs:
|
||||
release:
|
||||
name: Final
|
||||
if: ${{ github.repository == 'primer/css' }}
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
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@v3
|
||||
with:
|
||||
node-version: 18.x
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- 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@master
|
||||
with:
|
||||
title: Release Tracking
|
||||
# This expects you to have a script called release which does a build for your packages and calls changeset publish
|
||||
publish: npm run release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ steps.get-access-token.outputs.access-token }}
|
||||
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN_SHARED }}
|
||||
if: ${{ github.repository == 'primer/css' && github.ref_name == 'main' }}
|
||||
uses: primer/.github/.github/workflows/release.yml@main
|
||||
secrets:
|
||||
gh_token: ${{ secrets.GPR_AUTH_TOKEN_SHARED }}
|
||||
npm_token: ${{ secrets.NPM_AUTH_TOKEN_SHARED }}
|
||||
|
1
.github/workflows/release_candidate.yml
vendored
1
.github/workflows/release_candidate.yml
vendored
@ -3,6 +3,7 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- 'changeset-release/**'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
release-candidate:
|
||||
|
Loading…
Reference in New Issue
Block a user