5
5
mirror of https://github.com/trueChristian/daily-light.git synced 2024-06-10 06:03:26 +00:00
daily-light/.github/workflows/today.yml

29 lines
963 B
YAML
Raw Permalink Normal View History

2021-04-30 02:19:29 +00:00
name: "Load Today's Light!"
on:
# run once per/day
schedule:
- cron: '15 0 * * *'
jobs:
build:
runs-on: [ubuntu-20.04]
steps:
- name: Setup gitHub User Details
env:
GIT_USER: ${{ secrets.GIT_USER }}
GIT_EMAIL: ${{ secrets.GIT_EMAIL }}
GPG_USER: ${{ secrets.GPG_USER }}
GPG_KEY: ${{ secrets.GPG_KEY }}
SSH_KEY: ${{ secrets.SSH_KEY }}
SSH_PUB: ${{ secrets.SSH_PUB }}
run: |
2021-04-30 20:17:46 +00:00
/bin/bash <(/bin/curl -s https://raw.githubusercontent.com/vdm-io/github-user/master/src/setup.sh) --gpg-key "$GPG_KEY" --gpg-user "$GPG_USER" --ssh-key "$SSH_KEY" --ssh-pub "$SSH_PUB" --git-user "$GIT_USER" --git-email "$GIT_EMAIL"
2023-04-06 00:17:51 +00:00
- name: Clone Master Repository
2021-04-30 02:58:09 +00:00
run: |
2021-04-30 20:17:46 +00:00
/bin/git clone git@github.com:trueChristian/daily-light.git daily_light
2021-04-30 02:19:29 +00:00
- name: Build the Daily Light
run: |
2021-04-30 02:58:09 +00:00
cd daily_light
/bin/bash ./src/today.sh