Skip to content

Commit

Permalink
test release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nlebovits committed Jul 19, 2024
1 parent ada2e98 commit 1505aba
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,3 @@ jobs:
uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
config-name: .github/release-drafter.yml
11 changes: 10 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
branches:
- main
- test-release

jobs:
release:
Expand All @@ -17,6 +17,15 @@ jobs:
with:
node-version: '20.8.1'

- name: List files in the root directory
run: ls -al

- name: Check if package-lock.json exists
run: test -f package-lock.json && echo "package-lock.json exists" || echo "package-lock.json does not exist"

- name: Clear NPM Cache
run: npm cache clean --force

- name: Install dependencies
run: npm ci

Expand Down

0 comments on commit 1505aba

Please sign in to comment.