Skip to content

Commit

Permalink
3rd change
Browse files Browse the repository at this point in the history
  • Loading branch information
hirsch88 committed Feb 12, 2024
1 parent 66cd140 commit f5c8d70
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/cold-monkeys-switch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@baloise/ds-tokens': patch
---

**cli**: 3rd change
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- changeset-release/main
pull_request:

concurrency:
Expand Down Expand Up @@ -46,7 +47,7 @@ jobs:
- name: Lint & test
run: npx nx affected -t lint test

- name: Create Release Pull Request or Publish to npm
- name: Changeset
if: github.ref == 'refs/heads/main'
id: changesets
uses: changesets/action@v1
Expand All @@ -58,6 +59,14 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}

- name: Echo changeset output
shell: bash
run: |
echo "Changeset published - ${{ steps.changesets.outputs.published }}"
echo "Changeset publishedPackages - ${{ steps.changesets.outputs.publishedPackages }}"
echo "Changeset hasChangesets - ${{ steps.changesets.outputs.hasChangesets }}"
echo "Changeset pullRequestNumber - ${{ steps.changesets.outputs.pullRequestNumber }}"
- name: Build
if: steps.changesets.outputs.published == 'false'
run: npx nx affected -t build
Expand Down

0 comments on commit f5c8d70

Please sign in to comment.