Skip to content

Commit

Permalink
Update and rename data_parse.yml to deploy_parse.yml
Browse files Browse the repository at this point in the history
Added deploy and parse to same page
- Made markdown copy function
- Created dependency
  • Loading branch information
samapriya authored Sep 29, 2023
1 parent 10a7705 commit b259499
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 86 deletions.
86 changes: 0 additions & 86 deletions .github/workflows/data_parse.yml

This file was deleted.

43 changes: 43 additions & 0 deletions .github/workflows/deploy_parse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: manuscript_export
on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.8"

- name: upgrade pip and install python packages
run: |
python -m pip install --upgrade pip
pip install -U pip setuptools
pip install requests
pip install beautifulsoup4
pip install pandas
pip install lxml
pip install html5lib
- name: output_render
uses: jannekem/run-python-script-action@v1
with:
script: |
- name: commit files
continue-on-error: true
run: |
today=$(date +"%Y-%m-%d")
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git commit -m "updated datasets ${today} UTC" -a
- name: push changes
continue-on-error: true
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main

0 comments on commit b259499

Please sign in to comment.