Shohei Ueda

Results 105 comments of Shohei Ueda

Wow! That is one of the interesting Vue.js's migration projects to TypeScript. Thank you for notifying me. I will watch those projects and add the VitePress to the next to...

Hmm, `vuepress` will be also rewritten with TypeScript (vue-next) as `vuepress-next`. VitePress is another SSG with Vite, not a next VuePress. I understood it.

[Release v3.0.0 One Piece · vuejs/vue-next](https://github.com/vuejs/vue-next/releases/tag/v3.0.0)

This action is a TypeScript action.

[About custom actions - GitHub Docs](https://docs.github.com/en/actions/creating-actions/about-custom-actions)

This action is a TypeScript action, not a Docker action. https://github.com/peaceiris/actions-gh-pages/blob/ac45008338dab8bf0c3efa91605acffc8565729c/action.yml#L4-L6 The Dockerfile is used for the **LOCAL** testing.

Thanks! As I mentioned in [this comment](https://github.com/peaceiris/actions-gh-pages/issues/748#issuecomment-1147528927), GitHub Pages does not support objects under Git LFS. So there is no way to **upload** files under LFS. Therefore, the `lfs` input...

I think the `concurrency.group` already resolves this instead. ```yaml jobs: deploy: runs-on: ubuntu-20.04 permissions: contents: write concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: ```

The current example workflow on README includes the approach already. Please try the `concurrency.group` first. ```yaml name: GitHub Pages on: push: branches: - main # Set a branch name to...

There is no way to push the files over 100MB to GitHub. > [About large files on GitHub - GitHub Docs](https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-large-files-on-github) > GitHub blocks pushes that exceed 100 MB. I...