上传文件至 .github/workflows
Some checks failed
Build and Package Golang / build (push) Failing after 4m41s

This commit is contained in:
2024-12-02 11:03:03 +08:00
parent 92418cefdb
commit 461f7fe6b2

View File

@ -31,17 +31,19 @@ jobs:
- name: Prepare Debian metadata
run: |
mkdir -p debian/source
echo "3.0 (native)" > debian/source/format
mkdir -p debian
cat <<EOF > debian/control
Source: golang
Source: template-repository
Section: devel
Priority: optional
Maintainer: Your Name <your.email@example.com>
Maintainer: Tsic404 <liuheng@deepin.org>
Standards-Version: 4.5.0
Homepage: https://go.dev
Package: golang
Version: 1.22.6
Architecture: amd64
Depends: libc6 (>= 2.17)
Description: The Go programming language
@ -52,7 +54,7 @@ jobs:
cat <<EOF > debian/rules
#!/usr/bin/make -f
%:
dh \$@
dh \$@
EOF
chmod +x debian/rules