Skip to content

typo in html fragment #297

typo in html fragment

typo in html fragment #297

Workflow file for this run

name: Build sample material
on:
push:
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Install tools
uses: taiki-e/install-action@v2
with:
tool: [email protected],[email protected],[email protected]
- name: Build book-and-slides
run: |
./training-slides/build.sh
- name: Build example code
run: |
./example-code/build.sh
- name: Assemble Artifacts
run: |
mkdir -p ./output
mv ./training-slides/slides ./output/training-slides-presentation
mv ./training-slides/book ./output/training-slides-book
zip -r ./output.zip ./output
- name: Upload Artifacts
uses: actions/upload-artifact@v3
if: ${{success()}}
with:
name: Artifacts
if-no-files-found: error
path: |
./output
- name: Create and Upload Release
if: github.event_name == 'push' && startswith(github.ref, 'refs/tags/')
id: create_release
uses: ncipollo/release-action@v1
with:
artifacts: ./output.zip