Skip to content

Commit

Permalink
fix: workflow draft release
Browse files Browse the repository at this point in the history
  • Loading branch information
rjborba committed Jan 6, 2025
1 parent 1c8214a commit 5d881c6
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 14 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/create-draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Read Node.js version from .nvmrc
id: node_version
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}

# Fetch tags to determine the latest version
- name: Fetch all tags
run: git fetch --tags
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
"eslint": "^9.5.0",
"eslint-config-custom": "workspace:*",
"eslint-plugin-html": "^8.1.1",
"postcss": "^8.4.39",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.2",
"sass": "^1.77.8",
"turbo": "^2.0.5"
},
"engines": {
Expand Down
30 changes: 16 additions & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5d881c6

Please sign in to comment.