This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(github-actions): move to release action
- Loading branch information
1 parent
5105c1f
commit 60fb4a4
Showing
6 changed files
with
65 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Update node version - nix flake | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- 'hotfix/**' | ||
jobs: | ||
check-node-version: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
NODE_VERSION: ${{ steps.prefetch.outputs.NODE_VERSION }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- id: get_package_json_content | ||
run: echo "PACKAGE_JSON_CONTENT=$(cat ./package.json)" >> $GITHUB_OUTPUT | ||
- id: extract_node_version | ||
run: echo "NODE_VERSION=${{ fromJSON(steps.get_package_json_content.outputs.PACKAGE_JSON_CONTENT).volta.node }}" >> $GITHUB_OUTPUT | ||
- name: output node version | ||
run: echo ${{ steps.extract_node_version.NODE_VERSION }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- [ ] action to check if node version has changed => I would say do it after a merge? | ||
- [ ] action to check dependencies => I would say do it after a merge or before a merge? | ||
- [ ] action to check update flake.lock & suggest updating => I would say do it after a merge? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
/nix/store/0ykvjbi3f0hzcnv32lm81zpa7x6phlzx-clever-tools-3.4.0 | ||
/nix/store/7id546znp1rdynwyi1vmda2795qn6q34-clever-tools-3.4.0 |