Compare commits

..

No commits in common. "430d0aa8458fd95941de5cf2cce055723f997889" and "e836c4264a9dd5dd381404e41493177027a5e7ff" have entirely different histories.

2 changed files with 0 additions and 29 deletions

View File

@ -1,24 +0,0 @@
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
Jenkinsfile vendored
View File

@ -5,9 +5,6 @@ pipeline {
} }
stages { stages {
stage('Parent') {
when { anyOf { branch 'main'; branch 'beta-release' } }
stages {
stage('Build') { stage('Build') {
steps { steps {
sh ''' sh '''
@ -35,8 +32,6 @@ pipeline {
} }
} }
} }
}
}
post { post {
always { always {
cleanWs(notFailBuild: true, cleanWs(notFailBuild: true,