Update and rename README.txt to README.md #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: EldenRingModTranslator Pyinstaller | |
on: [ push ] | |
jobs: | |
Build: | |
runs-on: windows-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyinstaller | |
pip install PyQt6 | |
pip install pyqtdarktheme | |
- name: Pyninstaller | |
run: | | |
pyinstaller -w -F -i "app.ico" main_er.py | |
pyinstaller -w -F -i "app.ico" main_ds3.py | |
- name: Create Artifact | |
id: vars2 | |
run: | | |
mkdir out | |
cp ./dist/main*.exe ./out/ | |
cp -r ./db ./out/ | |
cp -r ./Yabber131/ ./out/ | |
cp -r ./glossaries/ ./out/ | |
cp ./README.txt ./out/ | |
cp ./config*.json ./out/ | |
cp ./更新日志.txt ./out/ | |
cp ./app.ico ./out/ | |
shell: bash | |
- name: Upload Actions File | |
uses: actions/[email protected] | |
with: | |
name: release | |
path: ${{github.workspace}}/out |