Skip to content

Commit

Permalink
Replace CircleCI with GitHub Actions (#709)
Browse files Browse the repository at this point in the history
* Add GitHub Actions workflow

* Bump pnpm/action-setup and add dependabot config

* Minor tweaks
  • Loading branch information
encounter authored Oct 13, 2024
1 parent a5d9025 commit 897a61e
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 47 deletions.
47 changes: 0 additions & 47 deletions .circleci/config.yml

This file was deleted.

6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
46 changes: 46 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build and deploy

on:
push:
paths-ignore:
- '**.md'
pull_request:

jobs:
build:
name: Build and deploy
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Cache Node dependencies
uses: actions/setup-node@v4
with:
cache: pnpm

- name: Cache Rust workspace
uses: Swatinem/rust-cache@v2
with:
workspaces: rust

- name: Install Node dependencies
run: pnpm install

- name: Run build
run: pnpm run build

- name: Deploy
if: github.ref == 'refs/heads/master'
uses: burnett01/rsync-deployments@7.0.1
with:
switches: -va --delete-after --exclude=data/ --exclude=priv/ --exclude=.well-known/
path: dist/
remote_path: noclip.website/
remote_host: iad1-shared-e1-29.dreamhost.com
remote_user: gznoclip
remote_key: ${{ secrets.DEPLOY_KEY }}

0 comments on commit 897a61e

Please sign in to comment.