Updated to Skia instead of Canvas through JavaScript #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: AOT Compile ZXSpectrum | |
env: | |
PUBLISH_DIR: Platforms/ZXBox.Blazor/bin/Release/net8.0/publish/wwwroot | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: windows-2022 | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '8.0.x' | |
include-prerelease: true | |
- name: Install tools | |
run: dotnet workload install wasm-tools | |
- name: Publish application | |
run: dotnet publish -c Release Platforms/ZXBox.Blazor/ZXBox.Blazor.csproj | |
- name: Change base-tag in index.html from / to BlazorGitHubPagesDemo | |
run: (Get-content -path '${{ env.PUBLISH_DIR }}/index.html') -replace '<base href="/" />', '<base href="/ZXSpectrum/"/>' | Out-File -FilePath '${{ env.PUBLISH_DIR }}/index.html' | |
# add .nojekyll file to tell GitHub pages to not treat this as a Jekyll project. | |
# Allow files and folders starting with an underscore. | |
- name: Add .nojekyll file | |
run: touch ${{ env.PUBLISH_DIR }}/.nojekyll | |
# copy index.html to 404.html to serve the same file when a file is not found this makes deep linking possible | |
- name: copy index.html to 404.html | |
run: cp ${{ env.PUBLISH_DIR }}/index.html ${{ env.PUBLISH_DIR }}/404.html | |
#Add .giattributes file so all files are handled as binary | |
- name: Add .giattributes | |
run: echo "* binary" > "${{ env.PUBLISH_DIR }}/.gitattributes" | |
- name: Commit to GitHub pages Repo | |
if: success() | |
uses: crazy-max/[email protected] | |
with: | |
target_branch: gh-pages | |
build_dir: ${{ env.PUBLISH_DIR }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |