Create .github/workflows/static.yml

This commit is contained in:
WofWca 2023-03-25 20:18:24 +04:00
parent d0fbea35be
commit 3cd4d83033
1 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1,67 @@
# How the file was made: template used: GitHub's suggested "deploy Nuxt app to GitHub pages"
# Since it's a Vite project, better refer to https://vitejs.dev/guide/static-deploy.html#github-pages
name: Deploy Nuxt site to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["webxdc-prototype"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# https://pnpm.io/continuous-integration
- name: Set up pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "16"
cache: "pnpm"
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install dependencies
run: pnpm install
- name: Build
env:
REPO_OWNER_AND_NAME: ${{ github.repository }}
#VIKUNJA_FRONTEND_BASE: /${{ github.repository }}/
# Set VIKUNJA_FRONTEND_BASE to the repo name
run: VIKUNJA_FRONTEND_BASE=$(echo "$REPO_OWNER_AND_NAME" | cut -d / -f 2) pnpm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./dist
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1