Skip to content

Commit

Permalink
Add workflow that generates staging deploys
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Jul 14, 2024
1 parent 079650d commit e595e80
Show file tree
Hide file tree
Showing 2 changed files with 131 additions and 54 deletions.
131 changes: 131 additions & 0 deletions .github/workflows/deploy-site.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
name: Deploy site

on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build site
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- uses: actions/upload-artifact@v4
with:
name: site-build
path: dist
if-no-files-found: error

deploy-production:
name: Deploy to Production
needs: [build]
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
environment: production

steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: site-build
path: dist

- name: Tailscale
uses: tailscale/github-action@v2
with:
oauth-client-id: ${{ secrets.TAILSCALE_OAUTH_CLIENT_ID }}
oauth-secret: ${{ secrets.TAILSCALE_OAUTH_CLIENT_SECRET }}
tags: tag:ci

- name: Configure SSH
run: |
mkdir -p ~/.ssh/
echo "$SSH_KEY" > ~/.ssh/production.key
chmod 600 ~/.ssh/production.key
cat >>~/.ssh/config <<END
Host production
HostName $SSH_HOST
User ci
IdentityFile ~/.ssh/production.key
StrictHostKeyChecking no
END
env:
SSH_KEY: ${{ secrets.DEPLOYMENT_SSH_KEY }}
SSH_HOST: ${{ vars.DEPLOYMENT_HOST }}

- name: Deploy to deployment host
run: rsync -a --delete dist/ production:/usr/share/nginx/jb3.dev/

- name: Logout from Tailscale & delete ephemeral node
run: sudo tailscale logout

deploy-staging:
name: Deploy to Staging
needs: [build]
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main'
environment: staging

steps:
- name: Generate slug for deployment name
uses: gacts/github-slug@v1
id: slug

- uses: altinukshini/deployment-action@releases/v1
name: Create GitHub deployment
id: deployment
with:
token: "${{ github.token }}"
target_url: "https://${{ steps.slug.outputs.branch-name-slug }}.blog-staging.jb3.dev/"
environment: staging

- name: Download artifact
uses: actions/download-artifact@v4
with:
name: site-build
path: dist

- name: Tailscale
uses: tailscale/github-action@v2
with:
oauth-client-id: ${{ secrets.TAILSCALE_OAUTH_CLIENT_ID }}
oauth-secret: ${{ secrets.TAILSCALE_OAUTH_CLIENT_SECRET }}
tags: tag:ci

- name: Configure SSH
run: |
mkdir -p ~/.ssh/
echo "$SSH_KEY" > ~/.ssh/production.key
chmod 600 ~/.ssh/production.key
cat >>~/.ssh/config <<END
Host production
HostName $SSH_HOST
User ci
IdentityFile ~/.ssh/production.key
StrictHostKeyChecking no
END
env:
SSH_KEY: ${{ secrets.DEPLOYMENT_SSH_KEY }}
SSH_HOST: ${{ vars.DEPLOYMENT_HOST }}

- name: Deploy to deployment host
run: rsync -a --delete dist/ production:/usr/share/nginx/jb3.dev-staging/${{ steps.slug.outputs.branch-name-slug }}

- name: Logout from Tailscale & delete ephemeral node
run: sudo tailscale logout
54 changes: 0 additions & 54 deletions .github/workflows/deploy.yaml

This file was deleted.

0 comments on commit e595e80

Please sign in to comment.