diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml new file mode 100644 index 0000000..45ce7ab --- /dev/null +++ b/.gitea/workflows/main.yaml @@ -0,0 +1,26 @@ +name: Check scripts syntax +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - name: Install JS dependencies + run: | + npm install + - name: Run scripts + run: | + bash download-icons.sh + - name: Run build + run: | + npm run build + - name: Release zip + uses: akkuman/gitea-release-action@v1 + with: + files: |- + dist/** diff --git a/icon.png b/icon.png new file mode 100755 index 0000000..f0a0267 Binary files /dev/null and b/icon.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100755 index 0000000..f0a0267 Binary files /dev/null and b/public/favicon.ico differ