Compare commits
4 Commits
e836c4264a
...
430d0aa845
Author | SHA1 | Date |
---|---|---|
Emilia Allison | 430d0aa845 | |
Emilia Allison | bf09f281b3 | |
Emilia Allison | ca5c15756e | |
Emilia Allison | 95b81a7858 |
|
@ -0,0 +1,24 @@
|
||||||
|
name: Beta Deploy
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- beta-release
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Compile-Plate-Tool:
|
||||||
|
runs-on: linux_arm
|
||||||
|
steps:
|
||||||
|
- name: Check out repo code
|
||||||
|
uses: https://github.com/actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: "beta-release"
|
||||||
|
- name: Compile plate-tool
|
||||||
|
run: |
|
||||||
|
. "$HOME/.cargo/env"
|
||||||
|
trunk build --release --public-url "cool-stuff/plate-tool-beta/"
|
||||||
|
- name: Transfer files to host server
|
||||||
|
run: |
|
||||||
|
sftp oracle <<< "put -r dist"
|
||||||
|
- name: Deploy plate-tool-beta on host server
|
||||||
|
run: |
|
||||||
|
ssh oracle "sudo rm -rf /usr/share/nginx/html/plate-tool-beta/ && sudo mv dist /usr/share/nginx/html/plate-tool-beta"
|
|
@ -5,6 +5,9 @@ pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
|
stage('Parent') {
|
||||||
|
when { anyOf { branch 'main'; branch 'beta-release' } }
|
||||||
|
stages {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
sh '''
|
sh '''
|
||||||
|
@ -32,6 +35,8 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
cleanWs(notFailBuild: true,
|
cleanWs(notFailBuild: true,
|
||||||
|
|
Loading…
Reference in New Issue