mirror of
https://github.com/istefox/obsidian-bookmarker.git
synced 2026-07-22 07:47:38 +00:00
ci: run release actions on Node 24, build on Node 22 (#14)
This commit is contained in:
parent
20ea7c2fae
commit
32c207fc4b
1 changed files with 6 additions and 2 deletions
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
|
|
@ -1,7 +1,7 @@
|
|||
name: Release
|
||||
|
||||
# Builds the plugin and publishes a GitHub release with signed build
|
||||
# provenance whenever a semver tag (e.g. 0.1.4) is pushed.
|
||||
# provenance whenever a semver tag (e.g. 0.1.5) is pushed.
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
@ -13,6 +13,10 @@ permissions:
|
|||
id-token: write
|
||||
attestations: write
|
||||
|
||||
env:
|
||||
# Run the bundled JS actions on Node 24; Node 20 is being removed from the runners.
|
||||
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
@ -23,7 +27,7 @@ jobs:
|
|||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "20"
|
||||
node-version: "22"
|
||||
cache: "npm"
|
||||
|
||||
- name: Install dependencies
|
||||
|
|
|
|||
Loading…
Reference in a new issue