Build and Deploy #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy | |
on: | |
# Manually triggered event | |
workflow_dispatch: | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: yarn install | |
- name: Build project | |
run: yarn build | |
env: | |
REACT_APP_PROJECT_ID: ${{ secrets.WALLET_CONNECT_PROJECT_ID }} # WalletConnect project ID | |
REACT_APP_BASE_URL: ${{ vars.API_BASE_URL }} | |
REACT_APP_NFT_BASE_URL: ${{ vars.CERT_BASE_URL }} | |
REACT_APP_ANSWERS_KEY: ${{ secrets.CHALLENGE_ANSWERS_KEY }} | |
REACT_APP_SENTRY_KEY: ${{ secrets.SENTRY_KEY }} | |
REACT_APP_IPFS_GATEWAY: ${{ vars.IPFS_GATEWAY }} | |
REACT_APP_PARTICLE_PROJECT_ID: ${{ secrets.PARTICLE_PROJECT_ID }} | |
REACT_APP_PARTICLE_CLIENT_KEY: ${{ secrets.PARTICLE_CLIENT_KKEY }} | |
REACT_APP_PARTICLE_APP_ID: ${{ vars.PARTICLE_APP_ID }} | |
- name: Archive Production Artifact | |
run: | | |
# Create a filename with date-time suffix | |
ZIP_FILENAME=build-$(date +'%Y%m%d-%H%M%S').zip | |
echo "ZIP_FILENAME=$ZIP_FILENAME" >> $GITHUB_ENV | |
echo "Creating zip $ZIP_FILENAME" | |
# Replace 'build/' with the directory of your build artifacts | |
zip -r $ZIP_FILENAME build/ | |
shell: bash | |
- name: SCP to server | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ vars.SERVER_HOST }} | |
username: ${{ vars.SERVER_USERNAME }} | |
key: ${{ secrets.SSH_KEY }} | |
passphrase: ${{ secrets.SSH_KEY_PASSPHRASE }} | |
port: 22 | |
source: "*.zip" | |
target: ${{ vars.FILE_DIRECTORY }} | |
- name: SSH remote commands | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ vars.SERVER_HOST }} | |
username: ${{ vars.SERVER_USERNAME }} | |
key: ${{ secrets.SSH_KEY }} | |
passphrase: ${{ secrets.SSH_KEY_PASSPHRASE }} | |
port: 22 | |
script: | | |
cd ${{ vars.FILE_DIRECTORY }} | |
rm -rf build | |
unzip -o ${{ env.ZIP_FILENAME }} | |
# List zip files, sort by date (oldest first), and delete all but the 5 most recent | |
ls -tp *.zip | grep -v '/$' | tail -n +6 | xargs -I {} rm -- {} |