Skip to content

add rule: x.com

add rule: x.com #80

Workflow file for this run

name: kiss-rules
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.17.0"
cache: "yarn"
- run: yarn install
- run: yarn build
- uses: actions/upload-artifact@v3
with:
name: dist-artifacts
path: dist
deploy-web:
needs: build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: dist-artifacts
path: dist
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist