Skip to content

Commit

Permalink
fix important modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenyou committed May 27, 2024
1 parent 20bd306 commit 5fb023a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .changeset/five-files-dream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"scalawind": patch
---

fix important modifier
10 changes: 5 additions & 5 deletions .github/workflows/canary.yml → .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: Release Canary
name: Snapshot Release

on:
push:
branches:
- canary
- snapshot

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Release Canary
name: Snapshot Release
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
Expand All @@ -30,9 +30,9 @@ jobs:
run: |
pnpm build
- name: Release Canary
- name: Snapshot Release
run: |
pnpm release:canary
pnpm release:snapshot
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"dev": "turbo dev",
"lint": "turbo lint",
"release": "pnpm build && changeset publish",
"release:canary": "pnpm version:canary && pnpm publish:canary",
"version:canary": "changeset version --snapshot canary",
"publish:canary": "changeset publish --tag canary"
"release:snapshot": "pnpm version:snapshot && pnpm publish:snapshot",
"version:snapshot": "changeset version --snapshot snapshot",
"publish:snapshot": "changeset publish --tag snapshot"
},
"devDependencies": {
"@changesets/cli": "^2.27.3",
Expand Down

0 comments on commit 5fb023a

Please sign in to comment.