uv-k5-firmware-chinese-lts/.github/workflows/docker-image.yml

49 lines
2 KiB
YAML
Raw Normal View History

2023-12-08 14:39:56 +00:00
2023-12-08 14:43:24 +00:00
on: #指定触发 workflow 的事件
push: #当代码推送时触发
jobs: #定义工作流程
build: #工作流名称为 build
runs-on: ubuntu-22.04 #使用 Ubuntu 22.04 环境执行
container: #定义容器
image: archlinux:latest #使用 Arch Linux 镜像
steps: #定义工作流程中的步骤
2023-12-08 14:38:24 +00:00
- name: Install dependencies
run: |
pacman -Syyu --noconfirm \
base-devel \
arm-none-eabi-gcc \
arm-none-eabi-newlib \
git \
python-pip \
python-crcmod
2023-12-08 14:43:24 +00:00
- name: Checkout #拉取代码
uses: actions/checkout@v3 #使用 GitHub Actions 提供的 checkout 动作
2023-12-08 14:38:24 +00:00
2023-12-08 14:43:24 +00:00
- name: safe.directory #设置 git 的 safe.directory 配置
run: git config --global --add safe.directory /__w/uv-k5-firmware-chinese/uv-k5-firmware-chinese
2023-12-08 13:29:01 +00:00
2023-12-08 14:49:38 +00:00
- name: Make #执行 make 命令
run: make both #编译项目
2023-12-08 13:29:01 +00:00
2023-12-08 14:49:38 +00:00
- name: size #计算 firmware 大小
run: arm-none-eabi-size firmware #使用 arm-none-eabi-size 命令计算固件大小
2023-12-08 13:29:01 +00:00
2023-12-08 14:49:38 +00:00
- name: Upload Artifact #上传固件文件
uses: actions/upload-artifact@v3 #使用 GitHub Actions 提供的 upload-artifact 动作
2023-12-07 03:39:09 +00:00
with:
2023-12-08 14:49:38 +00:00
name: firmware #设置 artifact 名称为 firmware
path: LOSEHU*.bin #上传文件路径为 LOSEHU*.bin
2023-12-07 03:39:09 +00:00
2023-12-08 14:49:38 +00:00
- name: Upload binaries to release #将二进制文件上传到 release
if: ${{ startsWith(github.ref, 'refs/tags/v') }} #设置条件,当 ref 以 'refs/tags/v' 开头时执行
uses: svenstaro/upload-release-action@v2 #使用 GitHub Actions 提供的 upload-release-action 动作
2023-12-07 03:39:09 +00:00
with:
2023-12-08 14:49:38 +00:00
repo_token: ${{ secrets.GITHUB_TOKEN }} #GitHub token
file: firmware.packed.bin #要上传的文件
asset_name: LoseHu_$tag.bin #上传的文件名
tag: ${{ github.ref }} #GitHub ref
overwrite: true #覆盖已有的文件
release_name: release ${{ github.ref_name }} #发布名称为 release + ref 名称