2022-07-06 13:05:33 +00:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
2023-06-29 10:32:26 +00:00
|
|
|
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
|
2023-06-29 11:37:32 +00:00
|
|
|
env:
|
|
|
|
NEXT_PUBLIC_GHOST_API_URL: ''
|
|
|
|
NEXT_PUBLIC_GHOST_API_KEY: ''
|
|
|
|
INFURA_API_KEY: ''
|
|
|
|
|
2022-07-06 13:05:33 +00:00
|
|
|
jobs:
|
2024-07-24 12:39:54 +00:00
|
|
|
ci:
|
|
|
|
# https://docs.github.com/en/actions/using-workflows/reusing-workflows#calling-a-reusable-workflow
|
|
|
|
uses: ./.github/workflows/ci.yml
|
2022-07-06 13:05:33 +00:00
|
|
|
release:
|
2024-07-24 12:39:54 +00:00
|
|
|
needs: ci
|
2022-07-06 13:05:33 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
2023-06-29 10:39:10 +00:00
|
|
|
node-version: 18
|
2022-07-06 13:05:33 +00:00
|
|
|
- run: yarn install --frozen-lockfile
|
2023-06-29 11:25:19 +00:00
|
|
|
- run: yarn build
|
2022-07-06 13:05:33 +00:00
|
|
|
- uses: changesets/action@v1
|
|
|
|
id: changesets
|
|
|
|
with:
|
|
|
|
title: Release
|
|
|
|
commit: Release
|
|
|
|
version: yarn changeset version
|
|
|
|
publish: yarn changeset publish
|
|
|
|
createGithubReleases: true
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|