Skip to content

Commit 377ce0b

Browse files
committed
🔧 chore(workflows): Add new action to release workflow
Introduced a new action in the release workflow to enhance automation. This action checks out the repository and allows for customizable input parameters. Updated the `globals` package version in both `package.json` and `package-lock.json` to ensure compatibility with the latest features. Adjusted Node version specification for better clarity.
1 parent c5b1809 commit 377ce0b

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,12 @@ jobs:
2929
run: |
3030
git tag -fa "v$VERSION" -m "Update v$VERSION tag (using GitHub actions)"
3131
git push --set-upstream origin "v$VERSION" --force
32+
33+
run-this-action:
34+
name: Run this action
35+
runs-on: ubuntu-latest
36+
steps:
37+
- uses: actions/checkout@v5
38+
- name: Run this action
39+
uses: ./
40+
with: {append: 'test append', prepend: 'test prepend'}

package-lock.json

Lines changed: 5 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"@types/node": "^24.10.1",
3636
"eslint": "^9.39.1",
3737
"eslint-plugin-import": "^2.32.0",
38-
"globals": "^15.14.0",
38+
"globals": "^16.5.0",
3939
"prettier": "^3.6.2",
4040
"rollup": "^4.53.2"
4141
},

0 commit comments

Comments
 (0)