Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vaetas/gh_pages
Deploy files to gh-pages branch for Github Pages. Written in Dart lang.
https://github.com/vaetas/gh_pages
dart dartlang static-site
Last synced: 3 days ago
JSON representation
Deploy files to gh-pages branch for Github Pages. Written in Dart lang.
- Host: GitHub
- URL: https://github.com/vaetas/gh_pages
- Owner: vaetas
- License: mit
- Created: 2021-03-20T00:39:52.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-20T22:24:27.000Z (almost 4 years ago)
- Last Synced: 2024-12-18T09:45:22.649Z (18 days ago)
- Topics: dart, dartlang, static-site
- Language: Dart
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Publish to Github Pages.
Dart implementation of [gh-pages](https://github.com/tschaub/gh-pages) package. This package takes
all files from within a selected subfolder, copies them into `gh-pages` branch and uploads it to
the remote origin.## Installation
To use `gh_pages` outside of Dart projects activate it globally.
```text
pub global activate gh_pages
```You can also import it into your Dart project and call it from within.
```yaml
dependencies:
gh_pages: ^0.1.0
```## Usage
Publish `` to `gh-pages` branch and push to remote.
```text
gh_pages
```Run `gh_pages --help` or `gh_pages -h` to show usage help with all options.