Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SinithH committed Mar 25, 2024
1 parent f4e518d commit 14e7e02
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: '20'

- name: Install dependencies
run: npm ci
Expand All @@ -34,8 +34,11 @@ jobs:
- name: build for firefox
run: npm run zip:firefox

- name: copy build files
run: cp .output/*zip client/

- name: List files
run: ls -R .output/
run: ls

- name: Create Release
id: create_release
Expand All @@ -44,7 +47,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
.output/*.zip
*.zip
tag_name: ${{ github.ref }}
draft: false
prerelease: false

0 comments on commit 14e7e02

Please sign in to comment.