Skip to content

스컹크웍스

스컹크웍스 #6

Workflow file for this run

name: Test Issue
on:
issues:
types: [opened]
jobs:
build:
environment: goldminer
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -e .
- name: execute python script
env:
BLOG_NAME: ${{ secrets.BLOG_NAME }}
NAVER_CLIENT_ID: ${{ secrets.NAVER_CLIENT_ID }}
NAVER_CLIENT_SECRET: ${{ secrets.NAVER_CLIENT_SECRET }}
TISTORY_ACCESS_TOKEN: ${{ secrets.TISTORY_ACCESS_TOKEN }}
run: python src/goldminer/automations/knowledge.py ${{ github.event.issue.title }}