action icon indicating copy to clipboard operation
action copied to clipboard

A GitHub Action that deploys your Astro project to GitHub Pages

Results 16 action issues
Sort by recently updated
recently updated
newest added

## The Issue At DDEV we run linter before executing this action: https://github.com/ddev/ddev.com/blob/7a849588830da831a94f356877abee6d08a458a9/.github/workflows/test.yml ```yaml jobs: build: timeout-minutes: 15 runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: 20...

This is a suggestion to enable the inputs.out definition as this action currently does not allow usage of the astro config outDir. If outDir is different than './dist' then users...

I bumped my Astro website Node version to 20 earlier today, but discovered I could no longer build and deploy via Github pages. There's a [related Node 20 bug](https://github.com/withastro/action/issues/40), which...

I have a repo where the docs are colocated with source, but crucially not as a monorepo, just sibling directories. My `npm run build` command builds source, not astro. Of...

Resolves #47 This PR includes trailing spaces removal on save. ⚠️ This is my very first PR to this repository, so I might be missing something important.

Currently, available options of `withastro/action@v2` is a subset of those of `actions/setup-node@v4`. For example, `node-version-file` is not available. In my usecase, I define Node.js as `engines.node` in `package.json`. If I...

Bump `pnpm/action-setup` to `v3` to fix the following warning: ```txt Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: pnpm/action-setup@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/....

Maybe I am doing something wrong, but I cannot for the life of me deploy from a yarn workspaces monorepo. I added the base: ```js // astro.config.msj { base: '/docs',...

enhancement

It would be great to have an option to set cli flags on the `astro build` command. Specifically, I'd like to specify the `--config` flag to deploy a static version...

After looking at how we recommend this action is used, it turns out we can do a bit more to make it simple for people to use. This would be...