WIP: デザインスライドのみデプロイ #65
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
name: marp-github-actions | |
on: | |
push: | |
branches: | |
- main | |
- 'feature/marp/**' | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: 'pages' | |
cancel-in-progress: false | |
env: | |
LANG: 'ja_JP.UTF-8' | |
jobs: | |
build-github-desktop: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# - name: Setup Pages | |
# uses: actions/configure-pages@v3 | |
# - name: Setup Packages | |
# run: sudo apt update && sudo apt install jq npm fonts-noto | |
# - name: Install Marp CLI | |
# run: npm install -g @marp-team/marp-cli | |
# - name: Make Directory | |
# run: mkdir dest && cp -r ./git/imgs ./dest/imgs | |
# - name: Build Marp git-tutorial PDF | |
# run: marp $(cat config.json | jq -r .[0].directory)/slide.md | |
# -o ./dest/$(cat config.json | jq -r .[0].output_name).pdf | |
# --allow-local-files | |
# - name: Build Marp git-tutorial HTML | |
# run: marp $(cat config.json | jq -r .[0].directory)/slide.md | |
# --html | |
# -o ./dest/$(cat config.json | jq -r .[0].output_name).html | |
# --allow-local-files | |
# - name: Upload Files Pages | |
# uses: actions/upload-pages-artifact@v1 | |
# with: | |
# path: ./dest | |
# - name: Upload Artifact | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: git | |
# path: ./dest | |
build-basic-design: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Setup Packages | |
run: sudo apt update && sudo apt install jq npm fonts-noto | |
- name: Install Marp CLI | |
run: npm install -g @marp-team/marp-cli | |
- name: Make Directory | |
run: mkdir dest && cp -r ./design/imgs ./dest/imgs | |
- name: Build Marp design PDF | |
run: marp $(cat config.json | jq -r .[1].directory)/slide.md | |
-o ./dest/$(cat config.json | jq -r .[1].output_name).pdf | |
--allow-local-files | |
- name: Build Marp design HTML | |
run: marp $(cat config.json | jq -r .[1].directory)/slide.md | |
--html | |
-o ./dest/$(cat config.json | jq -r .[1].output_name).html | |
--allow-local-files | |
- name: Upload Files Pages | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: ./dest | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: design | |
path: ./dest | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: | |
- build-github-desktop | |
- build-basic-design | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |