Skip to content

Commit

Permalink
chore: try to fix nightly release (#735)
Browse files Browse the repository at this point in the history
<!---
☝️ PR title should follow conventional commits
(https://conventionalcommits.org)
-->

### 🔗 Linked issue

<!-- If it resolves an open issue, please link the issue here. For
example "Resolves #123" -->

### ❓ Type of change

<!-- What types of changes does your code introduce? Put an `x` in all
the boxes that apply. -->

- [ ] 📖 Documentation (updates to the documentation or readme)
- [ ] 🐞 Bug fix (a non-breaking change that fixes an issue)
- [ ] 👌 Enhancement (improving an existing functionality)
- [ ] ✨ New feature (a non-breaking change that adds functionality)
- [ ] 🧹 Chore (updates to the build process or auxiliary tools and
libraries)
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to change)

### 📚 Description

<!-- Describe your changes in detail -->
<!-- Why is this change required? What problem does it solve? -->
  • Loading branch information
tobiasdiez authored Aug 2, 2024
1 parent 2660c5f commit ab753aa
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
# Keep this in sync with the oldest Node.js version supported by the storybook
node: [18, 20]
os: [ubuntu-latest, windows-latest, macos-latest]
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -29,6 +32,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
cache: pnpm
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: pnpm install
Expand All @@ -49,6 +53,6 @@ jobs:
matrix.os == 'ubuntu-latest' &&
!contains(github.event.head_commit.message, '[skip-release]') &&
!startsWith(github.event.head_commit.message, 'docs')
run: pnpm publish --recursive --tag next --access public --report-summary --no-git-checks --force
run: pnpm publish --recursive --filter=./packages/nuxt-module --tag nightly --provenance --access public --report-summary --no-git-checks --force
env:
NODE_AUTH_TOKEN: ${{secrets.NPMJS_TOKEN}}
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}

0 comments on commit ab753aa

Please sign in to comment.