Skip to content

Release Asset Upload #120

Release Asset Upload

Release Asset Upload #120

Workflow file for this run

name: Release Asset Upload
on:
release:
types: [published]
jobs:
upload-release-asset:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install aiohttp
pip install aiofiles
pip install requests
pip install py7zr
pip install openpyxl
pip install pandas
pip install elasticsearch==7.13.4
- name: Run Release Script
env:
DB_PATH: ${{ secrets.DB_PATH }}
run: python -u scripts/package.py ${{ secrets.GITHUB_TOKEN }} ${{ github.repository }} ${{ github.event.release.tag_name }}