1
0
forked from notBrad/bubo-rss

Update and rename publish.yml to publish.yml--example

Added "--example" to extension to prevent workflow from running on this repo
This commit is contained in:
George Mandis
2020-02-04 10:05:58 -05:00
committed by GitHub
parent 6a5dee1f41
commit 6cf062e42d

36
.github/workflows/publish.yml--example vendored Normal file
View File

@@ -0,0 +1,36 @@
name: Publish with GitHub Actions
# Uncommen the "on" block below to use
on:
push:
branches:
- master
schedule:
# Run this script every 15 minutes
- cron: '*/15 * * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout master branch
uses: actions/checkout@v2
with:
ref: master
- name: Setup Node.js and install dependencies
uses: actions/setup-node@v1
with:
node-version: 11.4.0
- run: npm install
- name: Run build and parse RSS feeds
- run: npm run build --if-present
- name: Commit latest build to ./output folder
uses: github-actions-x/commit@v2.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'master'
commit-message: 'Published latest changes to RSS feeds'
force-add: 'true'
files: output/*
name: GitHub Action Bubo Bot
email: action@github.com