[READ-ONLY] Mirror of https://github.com/excaliburjs/sample-fireworks. Example making fireworks with GPU Particles in Excalibur excaliburjs.com/sample-fireworks/
excalibur excaliburjs sample
0

Configure Feed

Select the types of activity you want to include in your feed.

build gh page

Erik Onarheim (Jan 17, 2025, 1:42 PM -0600) f25562b0 2821dbb6

+46
+46
.github/workflows/build.yml
··· 1 + # This is a basic workflow to help you get started with Actions 2 + 3 + name: Build 4 + 5 + # Controls when the action will run. 6 + on: 7 + # Triggers the workflow on push or pull request events but only for the main branch 8 + push: 9 + branches: [ main ] 10 + 11 + # Allows you to run this workflow manually from the Actions tab 12 + workflow_dispatch: 13 + 14 + # A workflow run is made up of one or more jobs that can run sequentially or in parallel 15 + jobs: 16 + # This workflow contains a single job called "build" 17 + build: 18 + # The type of runner that the job will run on 19 + runs-on: ubuntu-latest 20 + 21 + # Steps represent a sequence of tasks that will be executed as part of the job 22 + steps: 23 + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 24 + - uses: actions/checkout@v2 25 + with: 26 + submodules: recursive 27 + 28 + # Runs a single command using the runners shell 29 + - name: Build Sample Fireworks Vite 30 + run: | 31 + npm ci 32 + npm run build -- --base https://excaliburjs.com/excalibur-fireworks 33 + # Runs a set of commands using the runners shell 34 + - name: Deploy to GitHub Pages 35 + # You may pin to the exact commit or the version. 36 + # uses: JamesIves/github-pages-deploy-action@164583b9e44b4fc5910e78feb607ea7c98d3c7b9 37 + uses: JamesIves/github-pages-deploy-action@4.1.1 38 + with: 39 + # This is the branch you wish to deploy to, for example gh-pages or docs. 40 + branch: gh-pages 41 + # The folder in your repository that you want to deploy. If your build script compiles into a directory named build you would put it here. Folder paths cannot have a leading / or ./. If you wish to deploy the root directory you can place a . here. 42 + folder: dist 43 + # If you would like to push the contents of the deployment folder into a specific directory on the deployment branch you can specify it here. 44 + # target-folder: . 45 + # If you need to customize the commit message for an integration you can do so. 46 + commit-message: Deploy Sample Fireworks Vite