mirror of
https://github.com/artegoser/ultyt.git
synced 2024-11-06 04:53:57 +03:00
23 lines
469 B
YAML
23 lines
469 B
YAML
|
name: Deploy pages
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main]
|
||
|
permissions:
|
||
|
contents: write
|
||
|
jobs:
|
||
|
deploy:
|
||
|
name: Deploy pages
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Install dependencies
|
||
|
run: npm i
|
||
|
- name: Build pages
|
||
|
run: npm run build
|
||
|
- name: Deploy pages
|
||
|
uses: JamesIves/github-pages-deploy-action@v4
|
||
|
with:
|
||
|
branch: gh-pages
|
||
|
folder: dist
|