fix(ci): 安装git依赖并调整步骤顺序 #3
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: Auto CI Test Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
debian: | |
name: Debian 13 Trixie | |
runs-on: ubuntu-latest | |
container: docker.io/library/debian:trixie | |
steps: | |
- name: Install Dependencies | |
run: | | |
apt-get update | |
apt-get install -y sudo git | |
- name: Checkout Source | |
uses: actions/checkout@v3 | |
- name: Build Debian Src Package | |
uses: LingmoOS/[email protected] | |
with: | |
build-binary: false | |
build-source: true | |
output-dir: ./debian-deb-output | |
source-dir: ./ |