Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luxass/github-action-template-rollup
An opinionated GitHub Actions Template using rollup for bundling.
https://github.com/luxass/github-action-template-rollup
actions github-actions templates
Last synced: 17 days ago
JSON representation
An opinionated GitHub Actions Template using rollup for bundling.
- Host: GitHub
- URL: https://github.com/luxass/github-action-template-rollup
- Owner: luxass
- License: mit
- Created: 2024-07-19T04:52:10.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-30T00:07:03.000Z (18 days ago)
- Last Synced: 2024-10-30T01:48:43.112Z (17 days ago)
- Topics: actions, github-actions, templates
- Language: JavaScript
- Homepage:
- Size: 501 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# github-action-template-rollup
An opinionated GitHub Actions Template using [rollup](https://rollupjs.org) for bundling.
## Try it now!
### GitHub Template
[Create a new repository from this template](https://github.com/new?template_name=github-action-template-rollup&template_owner=luxass&name=action-[name])
### Manual
If you prefer to do it manually without the template, you can do the following:
```bash
npx degit luxass/github-action-template-rollup action-[your-action-name]
cd action-[your-action-name]
pnpm install
```## Usage
Before you start, you need to do the following to setup the project:
- [ ] Find and replace all `github-action-template` with your project name
- [ ] Update the License
- [ ] Update the README.md
- [ ] Update `action.yaml` file> [!NOTE]
> You should probably remove the `test-action.yaml` workflow, and move it to a different repository.
> This will make it easier to test the action in a real repository, without having all the noise of the action repository.