Fix marked sync return typing #14
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: SGRUD Pages | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
realworld: | |
name: Realworld | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
with: | |
path: ./source | |
- name: Checkout target | |
uses: actions/checkout@v3 | |
with: | |
path: ./target | |
repository: sgrud/sgrud.github.io | |
ssh-key: ${{secrets.PAGES_DEPLOY_KEY}} | |
- name: Build source | |
working-directory: ./source | |
run: | | |
npm install | |
npm run build | |
touch ./realworld/.nojekyll | |
- name: Test source | |
working-directory: ./source | |
run: | | |
npm test | |
- name: Stage target | |
working-directory: ./source | |
run: | | |
git --git-dir ../target/.git add -Af ./realworld | |
- name: Push target | |
working-directory: ./target | |
run: | | |
git diff --cached --quiet && exit | |
git config user.name github-actions[bot] | |
git config user.email github-actions[bot]@users.noreply.github.com | |
git commit -m ${{github.repository}}@${{github.sha}} | |
git push |