Skip to content

Commit

Permalink
Merge pull request #3 from frontkom/beta
Browse files Browse the repository at this point in the history
Merge pull request #3 from frontkom/beta
  • Loading branch information
krzysztofbranecki authored Mar 6, 2024
2 parents 011f395 + 63b7c61 commit c410392
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 73 deletions.
54 changes: 0 additions & 54 deletions .github/workflows/build-and-publish.yaml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,3 @@ jobs:
outputs:
new_release: ${{ steps.semantic.outputs.new_release_published }}
new_version: ${{ steps.semantic.outputs.new_release_version }}

github-publish:
name: GitHub Build & Publish - ${{ needs.tag_version.outputs.new_version }}
needs: [tag_version]
if: |
needs.check.outputs.has_npm_secrets
&& needs.tag_version.outputs.new_release
uses: ./.github/workflows/build-and-publish.yaml
with:
release_tag: ${{ needs.tag_version.outputs.new_version }}
dry_run: false
secrets: inherit
9 changes: 4 additions & 5 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"tagFormat": "v${version}",
"initialVersion": "0.1.0",
"initialVersion": "1.0.0",
"branches": [
"release",
{
Expand Down Expand Up @@ -130,7 +130,7 @@
[
"@semantic-release/npm",
{
"npmPublish": false,
"npmPublish": true,
"pkgRoot": "./package"
}
],
Expand All @@ -144,16 +144,15 @@
[
"@semantic-release/exec",
{
"prepareCmd": "mv package/changelogs/CHANGELOG.md package/changelogs/CHANGELOG-${nextRelease.version}.md;"
"prepareCmd": "mv package/changelogs/CHANGELOG.md package/changelogs/CHANGELOG-${nextRelease.version}.md && cd ./package && npm install && npm run build;"
}
],
[
"@semantic-release/git",
{
"assets": [
"package/package.json",
"package/changelogs/**",
"package/dist/**"
"package/changelogs/**"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
Expand Down
6 changes: 6 additions & 0 deletions package/changelogs/CHANGELOG-1.0.0-beta.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## [1.0.0-beta.5](https://github.com/frontkom/block-react-parser/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2024-03-06)


### Miscellaneous Chores

* **DEVOPS-506:** fix build package action config ([d9559e0](https://github.com/frontkom/block-react-parser/commit/d9559e015dfaffaee3590a5002cd6f540c6c850a))
6 changes: 6 additions & 0 deletions package/changelogs/CHANGELOG-1.0.0-beta.6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## [1.0.0-beta.6](https://github.com/frontkom/block-react-parser/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2024-03-06)


### Miscellaneous Chores

* **DEVOPS-506:** fix build package action config ([0a99ae0](https://github.com/frontkom/block-react-parser/commit/0a99ae08358445e3e6f48e6621ed58f2f8d2e6a5))
6 changes: 6 additions & 0 deletions package/changelogs/CHANGELOG-1.0.0-beta.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## [1.0.0-beta.7](https://github.com/frontkom/block-react-parser/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2024-03-06)


### Miscellaneous Chores

* **release:** 0.1.1 [skip ci] ([011f395](https://github.com/frontkom/block-react-parser/commit/011f39599ca5b94a5c3448aada36bd6d76d3f7ab))
6 changes: 6 additions & 0 deletions package/changelogs/CHANGELOG-1.0.0-beta.8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## [1.0.0-beta.8](https://github.com/frontkom/block-react-parser/compare/v1.0.0-beta.7...v1.0.0-beta.8) (2024-03-06)


### Miscellaneous Chores

* **DEVOPS-506:** remove dist folder from assets in @semantic-release/git ([ab67ce1](https://github.com/frontkom/block-react-parser/commit/ab67ce113828e7b4f471ef399740b4e64dd171c9))
6 changes: 6 additions & 0 deletions package/changelogs/CHANGELOG-1.0.0-beta.9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## [1.0.0-beta.9](https://github.com/frontkom/block-react-parser/compare/v1.0.0-beta.8...v1.0.0-beta.9) (2024-03-06)


### Miscellaneous Chores

* **DEVOPS-506:** remove dist folder ([390ece7](https://github.com/frontkom/block-react-parser/commit/390ece75eb8bb66e789fa841e71ad6a309b7f5d7))
4 changes: 2 additions & 2 deletions package/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json-schema.org/package.json",
"name": "@frontkom/block-react-parser",
"version": "0.1.1",
"version": "1.0.0-beta.9",
"description": "Gutenberg-generated HTML to React parser.",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -17,7 +17,7 @@
"author": "Roberto Ornelas <[email protected]>",
"contributors": [
{
"name": "Krzysztof Branecki ",
"name": "Krzysztof Branecki",
"email": "[email protected]"
}
],
Expand Down

0 comments on commit c410392

Please sign in to comment.