Skip to content

ci: adjust script

ci: adjust script #28

Workflow file for this run

on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
# permissions:
# pages: write
# id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Dependencies
run: npm ci
- name: Build vite project
run: npm run build:slim
# run: npm run build
# Delete unwanted files from the dist folder
# - name: Delete unwanted files
# run: rm dist/public/mockServiceWorker.js
# Print contents of the dist folder to verify deletion
- name: List dist folder files
run: ls -R dist # Recursively lists the contents of the dist folder to verify the deletion
# - name: Upload artifact
# uses: actions/upload-artifact@v4
# with:
# name: "github-pages"
# path: "dist/"
- name: Deploy 🚀
# id: deployment
# uses: actions/deploy-pages@v4
# environment: production
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist
# - name: Deploy
# uses: peaceiris/actions-gh-pages@v4
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./dist
# deploy:
# name: Deploy
# needs: build
# permissions:
# pages: write # to deploy to Pages
# id-token: write # to verify the deployment originates from an appropriate source
# # Deploy to the github-pages environment
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# # Specify runner + deployment step
# runs-on: ubuntu-latest
# steps:
# - name: Download artifact
# uses: actions/download-artifact@v4
# with:
# name: "github-pages"
# - name: Deploy to GitHub Pages 🚀
# id: deployment
# uses: actions/deploy-pages@v3