Skip to content

Commit

Permalink
feat: builder
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelass committed Feb 17, 2024
1 parent e899ba1 commit f97e193
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: "14" # Adjust this to your project's Node.js version
node-version: "18"
- name: Install dependencies
run: npm install
- name: Run start script
Expand Down Expand Up @@ -45,15 +45,11 @@ jobs:
fi
release:
needs: check-release
if: needs.check-release.outputs.exists == 'false'
needs: [build]
runs-on: ubuntu-latest
if: needs.build.outputs.version != ''
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: index
path: .
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down

0 comments on commit f97e193

Please sign in to comment.