Skip to content

chore: change trime nightly file name format #50

chore: change trime nightly file name format

chore: change trime nightly file name format #50

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag grbl2:$(date +%s)
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.10.7
- name: Install pyinstaller
run: |
python -m pip install --upgrade pip
pip install pyinstaller
# - name: Install dependencies
# run: pip install -r requirements.txt
- name: Test running
run: |
chmod +x ./CI-test.sh
./CI-test.sh
- name: Upload source code artifact
uses: actions/upload-artifact@v2
with:
name: source-code
path: . # 上传根目录所有文件