TSG 発の新しい創作活動がしたい #54
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
on: | |
issues: | |
types: [opened, edited, closed] | |
jobs: | |
GenerateSite: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-ruby@v1 | |
- uses: actions/checkout@v2 | |
- name: Generate Site | |
run: ruby site/generate_site.rb | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_REPOSITORY: ${{ github.repository }} | |
- name: Check Site | |
run: ls site/dist | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./site/dist |