Merge pull request #34 from jigintern/format-lint #50
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/git | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: 'pages' | |
cancel-in-progress: false | |
env: | |
LANG: 'ja_JP.UTF-8' | |
jobs: | |
build: | |
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-get update & sudo apt-get 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 | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |