Skip to content

Commit

Permalink
fix build process
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Apr 24, 2024
1 parent aa9142b commit af09d4e
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 63 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/netlify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Deploy to Netlify

on:
push:
branches:
- master

jobs:
build:
name: Deploy

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node-version: [18]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- run: npm install

- run: npm run test

- run: npm run build

- name: Deploy to Netlify
uses: nwtgck/actions-netlify@v1.2
with:
publish-dir: "./www"
production-deploy: true
production-branch: master
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: false
enable-commit-comment: true
overwrites-pull-request-comment: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
63 changes: 0 additions & 63 deletions .github/workflows/release-tags.yml

This file was deleted.

0 comments on commit af09d4e

Please sign in to comment.