mirror of
https://github.com/Xevion/grain.git
synced 2025-12-05 23:15:08 -06:00
Switch to grain.xevion.dev, remove GitHub pages workflow
This commit is contained in:
38
.github/workflows/deploy.yml
vendored
38
.github/workflows/deploy.yml
vendored
@@ -1,38 +0,0 @@
|
||||
name: deploy
|
||||
on: [push]
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: borales/actions-yarn@v3.0.0
|
||||
with:
|
||||
cmd: install # will run `yarn install` command
|
||||
- uses: borales/actions-yarn@v3.0.0
|
||||
with:
|
||||
cmd: build # will run `yarn build` command
|
||||
|
||||
- name: Upload production-ready build files
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: production-files
|
||||
path: ./dist
|
||||
deploy:
|
||||
name: Deploy
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
if: github.ref == 'refs/heads/master'
|
||||
|
||||
steps:
|
||||
- name: Download artifact
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: production-files
|
||||
path: ./dist
|
||||
|
||||
- name: Deploy to GitHub Pages
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./dist
|
||||
12
index.html
12
index.html
@@ -11,7 +11,7 @@
|
||||
property="og:description"
|
||||
content="A simple demonstration of a dynamically scaled SVG-based noise & radial gradients."
|
||||
/>
|
||||
<meta property="og:url" content="https://xevion.github.io/grain/" />
|
||||
<meta property="og:url" content="https://grain.xevion.dev/" />
|
||||
<meta property="og:site_name" content="Grain" />
|
||||
<meta property="article:author" content="Ryan Walters" />
|
||||
<meta property="article:section" content="Generative Art" />
|
||||
@@ -21,11 +21,11 @@
|
||||
/>
|
||||
<meta
|
||||
property="og:image"
|
||||
content="https://xevion.github.io/grain/bg.jpeg"
|
||||
content="https://grain.xevion.dev/bg.jpeg"
|
||||
/>
|
||||
<meta
|
||||
property="og:image:secure_url"
|
||||
content="https://xevion.github.io/grain/bg.jpeg"
|
||||
content="https://grain.xevion.dev/bg.jpeg"
|
||||
/>
|
||||
<meta property="og:image:width" content="1770" />
|
||||
<meta property="og:image:height" content="855" />
|
||||
@@ -36,11 +36,11 @@
|
||||
<meta property="og:image:type" content="jpeg" />
|
||||
<meta
|
||||
name="twitter:image"
|
||||
content="https://xevion.github.io/grain/bg.jpeg"
|
||||
content="https://grain.xevion.dev/bg.jpeg"
|
||||
/>
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:url" content="https://xevion.github.io/grain/" />
|
||||
<meta name="twitter:domain" content="https://xevion.github.io/grain/" />
|
||||
<meta name="twitter:url" content="https://grain.xevion.dev/" />
|
||||
<meta name="twitter:domain" content="https://grain.xevion.dev/" />
|
||||
<meta name="twitter:title" content="Grain" />
|
||||
<meta
|
||||
name="twitter:description"
|
||||
|
||||
5
vercel.json
Normal file
5
vercel.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"github": {
|
||||
"silent": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user