Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
T
tabulator-another-web
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
tabulator-another-web
Commits
f6ebd397
Commit
f6ebd397
authored
Jun 15, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci
parent
e64c073a
Pipeline
#37680
failed with stages
in 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
.gitlab-ci.yml
.gitlab-ci.yml
+40
-0
No files found.
.gitlab-ci.yml
0 → 100644
View file @
f6ebd397
stages
:
-
build
-
deploy
variables
:
GIT_DEPTH
:
"
1"
build
:
stage
:
build
dependencies
:
[]
tags
:
-
linux
script
:
-
npm ci
-
npm run build
artifacts
:
paths
:
-
dist/
deploy_to_server
:
stage
:
deploy
dependencies
:
-
build
tags
:
-
linux
variables
:
TARGET_HOST
:
genzakura.yuzurisa.com
TARGET_USER
:
root
FROM_DIR
:
./dist/build/h5/
TARGET_DIR
:
/data/frontends/tabulator.moecube.com
script
:
-
apt update && apt -y install openssh-client rsync coreutils
-
mkdir -p ~/.ssh
-
chmod 700 ~/.ssh
-
ssh-keyscan "$TARGET_HOST" >> ~/.ssh/known_hosts
-
echo "$NANAHIRA_SSH_KEY" | base64 --decode > ~/.ssh/id_rsa
-
chmod 600 ~/.ssh/*
-
rsync -4cavzP --delete "$FROM_DIR" "$TARGET_USER"@"$TARGET_HOST":"$TARGET_DIR"
only
:
-
main
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment