created dev branch where stored experimental eatures
All checks were successful
Testing Example / build-and-test (push) Successful in 2m2s

fixed ci/cd
This commit is contained in:
SnippetsX 2024-11-22 23:54:10 +03:00
parent 65e8404592
commit 475e1e1b45
5 changed files with 18 additions and 3 deletions

View File

@ -3,6 +3,7 @@ on:
push:
branches:
- master
- dev
jobs:
build-and-test:
@ -59,9 +60,22 @@ jobs:
- name: Create Release
uses: https://gitea.com/actions/gitea-release-action@v1
with:
body: |
## Release Notes
This is an automated release of version ${{ env.VERSION }}
### Changes
- Built from latest main branch
- Includes:
${{ github.event.head_commit.message }}
### Installation
Download the zip file and extract to your desired location.
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: v${{ env.VERSION }}
name: Release v${{ env.VERSION }}
files: |
release-artifacts/admin_dashboard-${{ env.VERSION }}.zip
draft: false

1
.gitignore vendored
View File

@ -13,6 +13,7 @@
# production
/build
*/build
/src/authtoken.json
# misc
.DS_Store

View File

@ -1,6 +1,6 @@
const fs = require('fs');
const filePath = 'authtoken.json';
const filePath = 'src/authtoken.json';
if (!fs.existsSync(filePath)) {
const randomToken = (Math.random().toString(36).substring(2, 10));

View File

@ -1,3 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
Disallow: /

View File

@ -1 +1 @@
{"buildMajor":1,"buildMinor":0,"buildRevision":16,"buildTag":"DEV"}
{"buildMajor":1,"buildMinor":0,"buildRevision":17,"buildTag":"DEV"}