-
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (41 loc) · 1.41 KB
/
rss-to-email.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: RSS to Email
on:
schedule:
- cron: '0 18 * * *' # This line means every day at 10am PST.
workflow_dispatch:
jobs:
sendEmail:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install dependencies
run: npm i
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Send Email Update
env:
MAILCHIMP_API_KEY: ${{ secrets.MAILCHIMP_API_KEY }}
MAILCHIMP_SERVER: ${{ secrets.MAILCHIMP_SERVER }}
MAILCHIMP_LIST_ID: ${{ secrets.MAILCHIMP_LIST_ID }}
run: node _scripts/rss-to-email.js
- name: Commit last published update
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Update latest emailed post"
commit_options: "--no-verify --signoff"