Skip to content

Commit

Permalink
Create anchor-deploy.yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Ravencodess <[email protected]>
  • Loading branch information
Ravencodess authored Aug 15, 2024
1 parent 094d2f2 commit dfe2bdf
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/anchor-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Anchor Deployment

on:
workflow_run:
workflows: ["Build and Upload"]
types:
- completed

jobs:
deploy_to_dev:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest

environment:
name: "anchor-java"
url: ${{ vars.URL }}

steps:
- name: Download build artifact
uses: actions/download-artifact@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }}
name: boilerplate-build
path: boilerplate.tar.gz

- name: Decode and create .env file
run: |
echo ${{ secrets.ENV }} | base64 -d > .env.java
- name: Copy Artifacts to server
run: |
sudo apt update && sudo apt install sshpass -y
sshpass -p ${{ secrets.PASSWORD }} scp -o StrictHostKeyChecking=no boilerplate.tar.gz .env.java ${{ secrets.USERNAME }}@${{ secrets.HOST }}:/tmp/
rm -f boilerplate.tar.gz .env
- name: Deploy on server
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: |
cd boilerplate
rm -rf *
tar -xzf /tmp/boilerplate.tar.gz
mv /tmp/.env.java .env
rm -f /tmp/boilerplate.tar.gz
cp -r .next/standalone/* .

0 comments on commit dfe2bdf

Please sign in to comment.