Skip to content

retypeapp/two-lang-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome

This project demonstrates configuring multiple Retype projects and deploying all to the same GitHub Pages instance.

Workflow

The following .github/workflows/retype-action.yml is used:

name: Publish Retype powered website to GitHub Pages
on:
  workflow_dispatch:
  push:
    branches:
      - main

jobs:
  publish:
    name: Publish to retype branch

    runs-on: ubuntu-latest

    permissions:
      contents: write

    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0

      - uses: retypeapp/action-build@multi
        with:
            config: fr/retype.yml
            subdir: fr

      - uses: retypeapp/action-build@multi
        with:
            config: ko/retype.yml
            subdir: ko

      - uses: retypeapp/action-build@multi

      - uses: retypeapp/action-github-pages@latest
        with:
          update-branch: true

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published