Skip to content

Commit

Permalink
gitac: echo undockPkg; doPkg=true; - name: create github release
Browse files Browse the repository at this point in the history
--
gitac: doDistros=false

gitac: +.github/workflows/.ws/pkgs/tint2-*.tar.gz

gitac: open>> busybox, openwrt

gitac: rootfs; exit 0

gitac: pkg list sort

gitac: bash buildx.sh #compile

gitac: -*.tar.gz

gitac: bash buildx.sh #compile

gitac: with pkgs
  • Loading branch information
huapox committed Dec 6, 2024
1 parent 1609601 commit d3384e9
Showing 1 changed file with 65 additions and 13 deletions.
78 changes: 65 additions & 13 deletions .github/workflows/docker-image-x11-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,20 +64,22 @@ jobs:
# BUILD
:> /tmp/.timecost
cd .github; doBuild=true
if [ "true" == "$doBuild" ]; then
# #############################
cd .github;
echo compile; cd ../compile;
# # bash buildx.sh ubt-builder
# # bash buildx.sh deb12-builder
# #
# # bash buildx.sh builder
# # bash buildx.sh gtk224 #builder-gtk224
# bash buildx.sh #compile
# #############################
echo rootfs; cd ../rootfs;
bash buildx.sh rootfs
# exit 0
#
# #############################
doDistros=false
if [ "true" == "$doDistros" ]; then
echo distros; cd ../distros;
# bash buildx.sh type dist ver [latest]
# bash buildx.sh core alpine 3.1 & ##
Expand All @@ -92,13 +94,13 @@ jobs:
# bash buildx.sh core alpine 3.12 & ##
# bash buildx.sh core alpine 3.13 & ##
# bash buildx.sh core alpine 3.14 & ##
# bash buildx.sh core alpine 3.19 latest &
bash buildx.sh core alpine 3.19 latest &
# bash buildx.sh core ubuntu 14.04 & ##
# bash buildx.sh core ubuntu 16.04 & ##
# bash buildx.sh core ubuntu 18.04 & ##
# bash buildx.sh core ubuntu 20.04 &
# bash buildx.sh core ubuntu 22.04 &
# bash buildx.sh core ubuntu 24.04 latest &
bash buildx.sh core ubuntu 24.04 latest &
# bash buildx.sh core opensuse 15.0 & ##
# bash buildx.sh core opensuse 15.1 & ##
# bash buildx.sh core opensuse 15.2 &
Expand All @@ -107,10 +109,10 @@ jobs:
# bash buildx.sh core opensuse 15.5 &
bash buildx.sh core opensuse 15.6 latest &
# oth
# bash buildx.sh core busybox 1.36.1 latest &
# bash buildx.sh core openwrt 23.05 latest &
# bash buildx.sh core debian 12 latest &
# bash buildx.sh core fedora 39 latest &
bash buildx.sh core busybox 1.36.1 latest &
bash buildx.sh core openwrt 23.05 latest &
bash buildx.sh core debian 12 latest &
bash buildx.sh core fedora 39 latest &
# wait
# app
# bash buildx.sh app alpine 3.1 & ##
Expand All @@ -123,15 +125,15 @@ jobs:
# bash buildx.sh app alpine 3.10 & ##
# bash buildx.sh app alpine 3.11 & ##
# bash buildx.sh app alpine 3.12 & ##
# bash buildx.sh app alpine 3.13 & ##
bash buildx.sh app alpine 3.13 & ##
# bash buildx.sh app alpine 3.14 & ##
bash buildx.sh app alpine 3.19 latest &
# bash buildx.sh app ubuntu 14.04 & ##
# bash buildx.sh app ubuntu 16.04 & ##
# bash buildx.sh app ubuntu 18.04 & ##
# bash buildx.sh app ubuntu 20.04 &
bash buildx.sh app ubuntu 20.04 &
# bash buildx.sh app ubuntu 22.04 &
# bash buildx.sh app ubuntu 24.04 latest &
bash buildx.sh app ubuntu 24.04 latest &
# bash buildx.sh app opensuse 15.0 & ##
# bash buildx.sh app opensuse 15.1 & ##
# bash buildx.sh app opensuse 15.2 &
Expand All @@ -143,14 +145,64 @@ jobs:
#
fi
#
# #############################
# 同步到ali仓
#REPO_ALI>> REPO_HUB REPO_TEN REPO_QING
unset REPO_ALI REPO_TEN REPO_QING #skipSync; QINGCLOUD.REPO net failed
echo syncer; doSync=true
echo syncer; doSync=false
cd ../.github/workflows; test "true" == "$doSync" && bash syncer.sh;
#
# #############################
echo undockPkg; doPkg=true
cd ../../.github/workflows; test "true" == "$doPkg" && bash undock.sh;
#
# view timecost
cat /tmp/.timecost
# ###############################################
# https://blog.csdn.net/heroboyluck/article/details/142185264
# GitHub Releases requires a tag
# https://github.com/softprops/action-gh-release
# outputs
# ###############################################
- name: create github release
id: new_release
uses: softprops/action-gh-release@v2 #v2.0.8
# if: startsWith(github.ref, 'refs/tags/')
with:
name: latest
tag_name: v24.12
make_latest: true
token: ${{ github.token }} #Defaults to ${{ github.token }}
body: |
Automated release-2024 for tag ${{ github.ref }}
# append_body
# generate_release_notes
draft: false
prerelease: false
preserve_order: true
fail_on_unmatched_files: false
# repository: #Defaults to GITHUB_REPOSITORY env variable
# body_path:
# target_commitish
# files: ebook.pdf
files: |
# ebook.pdf
# LICENSE
.github/workflows/.ws/pkgs/dropbear-*.tar.gz
.github/workflows/.ws/pkgs/perp-*.tar.gz
.github/workflows/.ws/pkgs/tigervnc-*.tar.gz
.github/workflows/.ws/pkgs/pulseaudio-*.tar.gz
.github/workflows/.ws/pkgs/xrdp-*.tar.gz
.github/workflows/.ws/pkgs/3rd-*.tar.gz
.github/workflows/.ws/pkgs/misc-*.tar.gz
.github/workflows/.ws/pkgs/fluxbox-*.tar.gz
.github/workflows/.ws/pkgs/openbox-*.tar.gz
.github/workflows/.ws/pkgs/suckless-*.tar.gz
.github/workflows/.ws/pkgs/tint2-*.tar.gz
# .github/workflows/.ws/pkgs/xcompmgr-amd64.tar.gz
# .github/workflows/.ws/pkgs/xlunch-amd64.tar.gz
# .github/workflows/.ws/pkgs/feh-amd64.tar.gz
# .github/workflows/.ws/pkgs/lxde-amd64.tar.gz
# post-build:
# name: Post-build
# needs: [ build ]
Expand Down

0 comments on commit d3384e9

Please sign in to comment.