Skip to content

Commit

Permalink
Test action publish_feed.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
richardr1126 authored Dec 4, 2024
1 parent c4fa148 commit dad262c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/publish_feed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Publish Feed

on:
push:
branches:
- main
workflow_dispatch:

jobs:
publish-feed:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4.2.2

- name: Set up Python
uses: actions/setup-python@v5.3.0

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Publish Feed Script
env:
HOSTNAME: ${{ secrets.HOSTNAME }}
HANDLE: ${{ secrets.HANDLE }}
PASSWORD: ${{ secrets.PASSWORD }}
SERVICE_DID: ${{ secrets.SERVICE_DID }}
run: |
python publish_feed.py

0 comments on commit dad262c

Please sign in to comment.