add Release_2024 #804
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: push | |
# 指定此工作流程的触发器 | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
on: | |
# push: | |
# branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
# 定义名称为"image-build"的job | |
image-build: | |
runs-on: self-hosted | |
steps: | |
# 获取最新变动 | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- run: lmake image |