Skip to content

wip

wip #15

Workflow file for this run

name: Changeset
on:
push:
branches:
- main
- ullrich/publish-via-ci
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write # allows the action to create a release
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.BELLA_ACTION_TOKEN }}
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
# - uses: bahmutov/npm-install@v1
- name: Create release PR or publish release
run: echo "FAKE - RELEASE"
# uses: changesets/action@v1
# with:
# version: yarn changeset version
# publish: yarn changeset publish
# commit: 'chore: version package'
# title: 'chore: version package'
# createGithubReleases: true
# env:
# GITHUB_TOKEN: ${{ secrets.BELLA_ACTION_TOKEN }}