diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..0319ca3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,10 @@ +src export-ignore +package.json export-ignore +package-lock.json export-ignore +.gitignore export-ignore +.gitattributes export-ignore +vite.config.js export-ignore +yarn.lock export-ignore +.github export-ignore +node_modules export-ignore +README.md export-ignore \ No newline at end of file diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index d0275be..b2d5290 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [18.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: @@ -26,7 +26,7 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' - - run: npm ci + - run: npm ci --force - run: npm run build --if-present - name: Create Release id: create_release @@ -34,10 +34,15 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} + files: | + assets/* + tag_name: 1.0.5 + release_name: Release 1.0.5 body: | Changes in this Release - - Changes ${{ github.ref }} draft: false prerelease: false + + + + diff --git a/.gitignore b/.gitignore index a0698ce..091a89d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ # Logs -/.assets logs *.log npm-debug.log* @@ -108,3 +107,4 @@ dist src/images/.DS_Store .DS_Store *.xml +assets/*