Skip to content

Commit

Permalink
ci: fix release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
janivo committed Dec 15, 2023
1 parent c376727 commit e1fa610
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/deploy-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ jobs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Track master branch to make nx affected work
run: |
git branch --track main origin/master
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ jobs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Track master branch to make nx affected work
run: |
git branch --track main origin/master
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
Expand Down
2 changes: 1 addition & 1 deletion packages/elements/src/components/ino-button/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ document

```jsx
import { Component } from 'react';
import { InoButton, InoIcon } from '@inovex.de/elements/dist/react';
import { InoButton, InoIcon } from '@inovex.de/elements/react';

class MyComponent extends Component {
render() {
Expand Down

0 comments on commit e1fa610

Please sign in to comment.