Skip to content

Version Packages (#49) #42

Version Packages (#49)

Version Packages (#49) #42

Workflow file for this run

name: Changesets
on:
push:
branches:
- main
env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
permissions: {}
jobs:
release:
# prevents this action from running on forks
if: github.repository == 'undp-data/style'
permissions:
contents: write # to create release (changesets/action)
pull-requests: write # to create pull request (changesets/action)
name: Release
runs-on: ubuntu-latest
steps:
- name: checkout code repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4.0.0
with:
version: 8.6.1
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: pnpm
- name: git config
run: git config --global url."https://github.com/".insteadOf 'git@github.com:'
- name: install dependencies
run: pnpm install --frozen-lockfile
- name: build style
run: |
make build
mv docs/ dist/
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}