This commit is contained in:
Colin McDonnell
2025-09-09 16:54:36 -07:00
parent bfd948fd3c
commit ff81db8bb7
9 changed files with 33 additions and 1490 deletions
+3 -3
View File
@@ -34,7 +34,7 @@ jobs:
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install
- name: Get package version
id: version
@@ -103,14 +103,14 @@ jobs:
Use the major version tag for automatic updates:
```yaml
- uses: pullfrog/pullfrog@${{ steps.version.outputs.major_tag }}
- uses: pullfrog/action@${{ steps.version.outputs.major_tag }}
with:
message: "Your message here"
```
Or pin to this specific version:
```yaml
- uses: pullfrog/pullfrog@${{ steps.version.outputs.tag }}
- uses: pullfrog/action@${{ steps.version.outputs.tag }}
with:
message: "Your message here"
```