WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Update README

Update README #21

Workflow file for this run

name: Release
on: push
jobs:
win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
- name: Install
run: |
conda install -y pyglet cx_freeze ffmpeg
conda list
cxfreeze --version
- name: Build
run: |
.\tools\freeze.bat
xcopy C:\Miniconda3\envs\test\Library\bin\*.dll dist /y
xcopy C:\Miniconda3\envs\test\Library\bin\ffmpeg.exe dist
7z a brainworkshop.zip dist\*
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: brainworkshop.zip