-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (38 loc) · 1.07 KB
/
build.yml
File metadata and controls
44 lines (38 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Build EvoFileManagerDialog
on:
release:
types: [ created ]
jobs:
run:
name: Build EvoFileManagerDialog
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install dependencies
run: npm run inst
- name: Update source code
run: npm run build
- name: Commit changes
uses: EndBug/add-and-commit@v10
with:
author_name: ProjectSoft-STUDIONIONS
author_email: projectsoft2009@yandex.ru
message: 'Update Build ${{ github.ref_name }}'
push: origin HEAD:master --force
add: |
**/*.js
**/*.css
**/*.less
**/*.php
**/*.tpl
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: EvoFileManagerDialog.zip
tag: ${{ github.ref_name }}
overwrite: true
file_glob: true