日本語文を逆から読む(逆再生をするとある程度妥当に聞こえるような音を出す)技能を身に付けたい #106
This file contains hidden or 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 |