Skip to content

updating iso filenames with wildcard and remove verbose and repeated … #464

updating iso filenames with wildcard and remove verbose and repeated …

updating iso filenames with wildcard and remove verbose and repeated … #464

Workflow file for this run

---
name: Deploy
on:
push:
branches:
- master
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
cache: npm
node-version-file: .tool-versions
- id: cache
name: Cache
uses: actions/cache@v5
with:
path: ./node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- if: steps.cache.outputs.cache-hit != 'true'
name: Install
run: npm ci
- name: Build
run: npm run build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_ENV: production
- name: Upload
uses: actions/upload-pages-artifact@v3
with:
path: dist/
Deploy:
needs: Build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: Support
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
name: Deploy
uses: actions/deploy-pages@v4