π Init ssh directory before installing keys #265
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 maybe deploy to dothq.org | |
on: | |
push: | |
branches: ["production", "staging"] | |
workflow_dispatch: | |
env: | |
SERVER_HOSTNAME: "dothq-org" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install dependencies | |
run: | | |
yarn | |
- name: Build | |
run: | | |
yarn build | |
- name: Test | |
run: | | |
yarn dev & | |
SERVER_PID=$! | |
while ! nc -z localhost 3000; do | |
sleep 0.1 | |
done | |
yarn test | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
if: github.ref == 'refs/heads/production' | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Deploy to production server | |
uses: ./.github/actions/run-via-ssh | |
with: | |
ts_hostname: ${{ env.SERVER_HOSTNAME }} | |
ts_oauth_client_id: ${{ secrets.TS_OAUTH_CLIENT_ID }} | |
ts_oauth_secret: ${{ secrets.TS_OAUTH_SECRET }} | |
ts_tags: tag:ci | |
ssh_username: ci | |
ssh_private_key: ${{ secrets.CI_PRIVATE_KEY }} | |
run: | | |
cd /app | |
git reset --hard | |
git pull | |
./scripts/rebuild_docker.sh |