Skip to content

Commit

Permalink
Update package.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
VJalili committed Jul 3, 2024
1 parent f208383 commit a1c7531
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,24 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: '18.x'

- name: Install Dependencies
run: npm install

- name: Compile
run: |
npm i -g @vercel/ncc
ncc build index.js --license licenses.txt
- name: Configure git
- id: config_git
- run : |
run : |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Compose Release Tag
id: release_tag
run: |
Expand All @@ -51,6 +55,7 @@ jobs:
echo "TAG: $TAG"
echo "TAG=$TAG" >> $GITHUB_OUTPUT
echo "SHA=$SHA" >> $GITHUB_OUTPUT
- name: Commit Dist Files
id: commit_dist_files
run: |
Expand Down

0 comments on commit a1c7531

Please sign in to comment.