Skip to content

Commit

Permalink
modified prerelease for v2 alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
shairez committed Oct 30, 2024
1 parent 3e21dd9 commit 3e485ae
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 57 deletions.
9 changes: 3 additions & 6 deletions .changeset/changelog-github-custom.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -351,12 +351,9 @@ var changelogFunctions = {
.concat(links.pull || links.commit, ')');
}
emojiFirstline = firstLine
.replace('FEAT:', '✨ ')
.replace('feat:', '✨ ')
.replace('fix:', '🐞🩹')
.replace('FIX:', '🐞🩹')
.replace('DOCS:', '📃')
.replace('docs:', '📃');
.replace(/feat:/i, '✨ ')
.replace(/fix:/i, '🐞🩹')
.replace(/docs:/i, '📃');
return [
2 /*return*/,
'\n\n- '
Expand Down
9 changes: 3 additions & 6 deletions .changeset/changelog-github-custom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,9 @@ const changelogFunctions: ChangelogFunctions = {
}

const emojiFirstline = firstLine
.replace('FEAT:', '✨ ')
.replace('feat:', '✨ ')
.replace('fix:', '🐞🩹')
.replace('FIX:', '🐞🩹')
.replace('DOCS:', '📃')
.replace('docs:', '📃');
.replace(/feat:/i, '✨ ')
.replace(/fix:/i, '🐞🩹')
.replace(/docs:/i, '📃');

return `\n\n- ${emojiFirstline} ${suffix}\n${futureLines.map((l) => ` ${l}`).join('\n')}`;
},
Expand Down
5 changes: 0 additions & 5 deletions .changeset/lazy-worms-attack.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/many-turtles-cough.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/ninety-planets-search.md

This file was deleted.

2 changes: 1 addition & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"@qwik.dev/react": "2.0.0-0",
"supabase-auth-helpers-qwik": "0.0.3"
},
"branch": "main",
"branch": "build/v2",
"changesets": []
}
5 changes: 0 additions & 5 deletions .changeset/real-garlics-argue.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shaggy-apes-kneel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silver-countries-kiss.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thick-dodos-promise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-experts-check.md

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Set Dist Tag
id: set_dist_tag
if: |
github.ref == 'refs/heads/main' && (
github.ref == 'refs/heads/build/v2' && (
github.event_name == 'push' ||
github.event_name == 'workflow_dispatch'
)
Expand Down Expand Up @@ -792,7 +792,7 @@ jobs:
if: |
always() &&
github.repository == 'QwikDev/qwik' && (
github.ref == 'refs/heads/main' ||
github.ref == 'refs/heads/build/v2' ||
needs.test-unit.result == 'success'
)
Expand Down Expand Up @@ -844,7 +844,7 @@ jobs:
# Do this before other release steps to avoid
# publishing temporary files
- name: Create Release Pull Request or Publish to npm
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/build/v2'
id: changesets
uses: changesets/action@v1
with:
Expand Down

0 comments on commit 3e485ae

Please sign in to comment.