Add .github/workflows/prod.yml
Some checks failed
Build and Deploy Test Version - next.asandikci.com / build_deploy (push) Has been cancelled
Some checks failed
Build and Deploy Test Version - next.asandikci.com / build_deploy (push) Has been cancelled
This commit is contained in:
parent
83abc30953
commit
0127f66910
1 changed files with 38 additions and 0 deletions
38
.github/workflows/prod.yml
vendored
Normal file
38
.github/workflows/prod.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
name: "Build and Deploy PRODUCTION Version - asandikci.com"
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pages: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
|
# Allow one concurrent deployment
|
||||||
|
concurrency:
|
||||||
|
group: "pages"
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_deploy:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: bitnami/minideb:bookworm-arm64
|
||||||
|
steps:
|
||||||
|
- name: Setup System Resources & Settings
|
||||||
|
run: |
|
||||||
|
apt-get update -y
|
||||||
|
apt-get upgrade -y
|
||||||
|
apt-get install git sshpass -y
|
||||||
|
|
||||||
|
- name: Checkout & Deploy
|
||||||
|
run: |
|
||||||
|
git clone https://git.asandikci.com/asandikci.com/web
|
||||||
|
cd web
|
||||||
|
git checkout website
|
||||||
|
cd _site
|
||||||
|
echo '${{ secrets.SFTP_PASSWORD_PROD }}' > ~/.passwd
|
||||||
|
chmod 0400 ~/.passwd
|
||||||
|
sshpass -f ~/.passwd sftp -oBatchMode=no -o StrictHostKeyChecking=accept-new -b - ${{ secrets.SFTP_USERNAME_PROD }}@${{ vars.SFTP_HOST_PROD }} << !
|
||||||
|
put -r . www/
|
||||||
|
bye
|
||||||
|
!
|
Loading…
Reference in a new issue