FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
alphaTabWebsite/.github/workflows/deploy-develop.yml at develop · CoderLine/alphaTabWebsite · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
CoderLine
/
alphaTabWebsite
Public
Notifications
You must be signed in to change notification settings
Fork
19
Star
9
Code
Issues
5
Pull requests
5
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
alphaTabWebsite
/
.github
/
workflows
/
deploy-develop.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
40 lines (38 loc) · 1.06 KB
Breadcrumbs
alphaTabWebsite
/
.github
/
workflows
/
deploy-develop.yml
Copy path
File metadata and controls
40 lines (38 loc) · 1.06 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
name
:
Deploy Develop
on
:
push
:
branches
:
-
develop
workflow_dispatch
:
schedule
:
-
cron
:
'
0 1 * * 0
'
jobs
:
build
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v4
-
uses
:
actions/setup-node@v4
with
:
node-version
:
lts/*
-
run
:
npm install
-
run
:
npm install @coderline/alphatab@alpha
-
run
:
npm install -D @coderline/alphatab-webpack@alpha
-
run
:
npm install -D @coderline/alphatab-language-server@alpha
-
run
:
npm run generate-alphatabdoc
-
run
:
npm run build
-
name
:
Package Zip
run
:
zip -qq -r ../website.zip .
working-directory
:
./build
-
run
:
ls -l website.zip
-
uses
:
actions/upload-artifact@v4
with
:
name
:
website
path
:
website.zip
-
name
:
Push Zip To Server
run
:
|
curl --request POST \
--url https://docs-deploy.alphaTab.net/ \
--header 'authorization: Bearer ${{ secrets.DEPLOY_TOKEN }}' \
--header 'branch: develop' \
-F 'website=@./website.zip' \
--fail-with-body
Back
|
FazBrowse Home
|
New Git URL