Skip to content

Commit

Permalink
test 0.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tolecar committed Aug 17, 2024
1 parent b47376e commit 0aaba53
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,18 @@ jobs:
- name: Run build script
run: npm run build

- name: Debug - List files in build directory
run: ls -al ./build

- name: Extract version number
id: extract_version
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} # Use PAT_TOKEN instead of GITHUB_TOKEN
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
release_name: Release ${{ env.VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "0.8.7",
"version": "0.8.8",
"scripts": {
"build" : "node sync-version.js && node build.js",
"sync-version": "node sync-version.js"
Expand Down

0 comments on commit 0aaba53

Please sign in to comment.