https://github.com/codesandtags/rss-generator-action
Custom Github Action to run the RSS generator
https://github.com/codesandtags/rss-generator-action
github-actions python rss
Last synced: 2 months ago
JSON representation
Custom Github Action to run the RSS generator
- Host: GitHub
- URL: https://github.com/codesandtags/rss-generator-action
- Owner: codesandtags
- License: mit
- Created: 2024-02-10T04:36:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-10T05:08:08.000Z (over 2 years ago)
- Last Synced: 2025-12-29T09:44:16.149Z (6 months ago)
- Topics: github-actions, python, rss
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RSS Generator Action
Custom Github Action to run the RSS generator.
## How to use it?
In your `workflow.yml` o Github actions YML file, include the `step`
```yaml
- name: Run RSS Generator
uses: codesandtags/rss-generator-action@main
```
Here is a full example:
```yaml
name: Generate RSS Feed
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Run RSS Generator
uses: codesandtags/rss-generator-action@main
```