Merge pull request #7 from wadakatu/feature/2024-06-16 #8
Workflow file for this run
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: generate pdf | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
create-release: | |
name: "Create Release" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm install | |
- name: generate pdf | |
run: npm run make:pdf | |
- name: create release with pdf | |
id: create_release | |
uses: marvinpinto/action-automatic-releases@latest | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: false | |
files: | | |
./docs/README.pdf |