Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/excaliburjs/sample-fireworks. Example making fireworks with GPU Particles in Excalibur
excaliburjs.com/sample-fireworks/
···11+# This is a basic workflow to help you get started with Actions
22+33+name: Build
44+55+# Controls when the action will run.
66+on:
77+ # Triggers the workflow on push or pull request events but only for the main branch
88+ push:
99+ branches: [ main ]
1010+1111+ # Allows you to run this workflow manually from the Actions tab
1212+ workflow_dispatch:
1313+1414+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1515+jobs:
1616+ # This workflow contains a single job called "build"
1717+ build:
1818+ # The type of runner that the job will run on
1919+ runs-on: ubuntu-latest
2020+2121+ # Steps represent a sequence of tasks that will be executed as part of the job
2222+ steps:
2323+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2424+ - uses: actions/checkout@v2
2525+ with:
2626+ submodules: recursive
2727+2828+ # Runs a single command using the runners shell
2929+ - name: Build Sample Fireworks Vite
3030+ run: |
3131+ npm ci
3232+ npm run build -- --base https://excaliburjs.com/excalibur-fireworks
3333+ # Runs a set of commands using the runners shell
3434+ - name: Deploy to GitHub Pages
3535+ # You may pin to the exact commit or the version.
3636+ # uses: JamesIves/github-pages-deploy-action@164583b9e44b4fc5910e78feb607ea7c98d3c7b9
3737+ uses: JamesIves/github-pages-deploy-action@4.1.1
3838+ with:
3939+ # This is the branch you wish to deploy to, for example gh-pages or docs.
4040+ branch: gh-pages
4141+ # 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.
4242+ folder: dist
4343+ # 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.
4444+ # target-folder: .
4545+ # If you need to customize the commit message for an integration you can do so.
4646+ commit-message: Deploy Sample Fireworks Vite