Translate "comment" to Ukrainian (#689) #2471
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: [push, pull_request, workflow_dispatch] | |
name: Build and Deploy Glossary Website | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Build site | |
run: make gh-site | |
- name: Remove _data fromm .gitignore | |
run: "grep -v '_data' .gitignore > tmpfile && mv tmpfile .gitignore" | |
- name: inspect content of folder | |
run: ls -alh _gh-site && ls -alh _gh-site/_data | |
- name: Deploy to site | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'carpentries/glosario' }} | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: site | |
folder: _gh-site | |
token: ${{ secrets.GITHUB_TOKEN }} |