Skip to content

Commit

Permalink
Switch to CloudFlare for deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Feb 9, 2024
1 parent 7c33f1e commit 73717d0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 52 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build

on: [push, pull_request]

permissions:
contents: write

jobs:
build:
# Skip building pull requests from the same repository
if: ${{ github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) }}
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4

- name: Install dependencies
uses: bahmutov/npm-install@5653d39101a041a30cc58572d6bd566b90a6de20 # v1.8.38

- name: Build project
run: npm run build
52 changes: 0 additions & 52 deletions .github/workflows/deploy.yml

This file was deleted.

0 comments on commit 73717d0

Please sign in to comment.