Skip to content

Attempt to fix release tagging #114

Attempt to fix release tagging

Attempt to fix release tagging #114

Workflow file for this run

## Script based on changeset guide https://github.com/changesets/action
name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install Dependencies
run: npm i
- name: Creating .npmrc
run: |
cat << EOF > "$HOME/.npmrc"
//npm.pkg.github.com/:_authToken=$NPM_TOKEN
EOF
env:
NPM_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Create Release Pull Request
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: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
NPM_TOKEN: ${{secrets.GITHUB_TOKEN}}
# - name: Run CI pipeline on PR branch
# if: steps.changesets.outputs.hasChangesets == 'true'
# uses: actions/github-script@v6
# with:
# script: |
# github.rest.actions.createWorkflowDispatch({
# owner: context.repo.owner,
# repo: context.repo.repo,
# workflow_id: 'main.yml',
# ref: 'changeset-release/main',
# })