mirror of
https://github.com/cupcakearmy/formhero.git
synced 2025-09-06 14:20:40 +00:00
Compare commits
15 Commits
Author | SHA1 | Date | |
---|---|---|---|
d20c383d3d | |||
|
2a5a054106 | ||
c2d255a7fb | |||
4a54c3ec8a | |||
|
f8da366022 | ||
fe0fb941ed | |||
c1cb469f3b | |||
|
034db3c404 | ||
456c37409c | |||
24786c104f | |||
|
bf8e1b83c8 | ||
4821a06157 | |||
a52af733c6 | |||
|
9c54b3a7c7 | ||
5461738af2 |
16
.github/workflows/release-please.yml
vendored
16
.github/workflows/release-please.yml
vendored
@@ -1,13 +1,25 @@
|
||||
name: release-please
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
name: release-please
|
||||
|
||||
jobs:
|
||||
release-please:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: google-github-actions/release-please-action@v3
|
||||
id: release
|
||||
with:
|
||||
release-type: node
|
||||
package-name: release-please-action
|
||||
package-name: formhero
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
if: ${{ steps.release.outputs.release_created }}
|
||||
- uses: ./.github/actions/build
|
||||
if: ${{ steps.release.outputs.release_created }}
|
||||
- run: pnpm publish
|
||||
if: ${{ steps.release.outputs.release_created }}
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
|
18
.github/workflows/release.yaml
vendored
18
.github/workflows/release.yaml
vendored
@@ -1,18 +0,0 @@
|
||||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*.*.*"
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: ./.github/actions/build
|
||||
|
||||
- run: pnpm test
|
||||
- run: pnpm publish
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
35
CHANGELOG.md
35
CHANGELOG.md
@@ -1,5 +1,40 @@
|
||||
# Changelog
|
||||
|
||||
## [1.0.5](https://github.com/cupcakearmy/formhero/compare/v1.0.4...v1.0.5) (2023-03-06)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* cleanup release ([c2d255a](https://github.com/cupcakearmy/formhero/commit/c2d255a7fb50876485c3183af378dc6cad5a7272))
|
||||
|
||||
## [1.0.4](https://github.com/cupcakearmy/formhero/compare/v1.0.3...v1.0.4) (2023-03-06)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* release ([fe0fb94](https://github.com/cupcakearmy/formhero/commit/fe0fb941ed6447e69adb908e7ad2f9df742c77cf))
|
||||
|
||||
## [1.0.3](https://github.com/cupcakearmy/formhero/compare/v1.0.2...v1.0.3) (2023-03-03)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* release ([456c374](https://github.com/cupcakearmy/formhero/commit/456c37409cd3d5185face8455a57d58847bdb774))
|
||||
|
||||
## [1.0.2](https://github.com/cupcakearmy/formhero/compare/v1.0.1...v1.0.2) (2023-03-03)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* tag format ([4821a06](https://github.com/cupcakearmy/formhero/commit/4821a061579abd973e0c0a27b51be726b37dfdba))
|
||||
|
||||
## [1.0.1](https://github.com/cupcakearmy/formhero/compare/v1.0.0...v1.0.1) (2023-03-03)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* empty ([5461738](https://github.com/cupcakearmy/formhero/commit/5461738af24ced9ed0800ae53fb1b0f17df6d258))
|
||||
|
||||
## 1.0.0 (2023-03-03)
|
||||
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "formhero",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.5",
|
||||
"type": "module",
|
||||
"module": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
@@ -9,7 +9,7 @@
|
||||
],
|
||||
"scripts": {
|
||||
"clean": "rm -rf ./dist",
|
||||
"prepublishOnly": "run-s clean build test",
|
||||
"prepublishOnly": "run-s clean compile test",
|
||||
"build": "run-s compile demo",
|
||||
"compile": "tsc",
|
||||
"compile:watch": "tsc -w",
|
||||
|
Reference in New Issue
Block a user