From 798a01fe84f288cea90aa70f8d43328391b86b1f Mon Sep 17 00:00:00 2001 From: Ward from fusion-voyager-3 Date: Sun, 15 Sep 2024 21:37:31 +0300 Subject: [PATCH] f --- .github/release-debian-v3 | 1 + .github/workflows/release-debian-v3.yml | 40 +++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 .github/release-debian-v3 create mode 100755 .github/workflows/release-debian-v3.yml diff --git a/.github/release-debian-v3 b/.github/release-debian-v3 new file mode 100644 index 0000000..9d60796 --- /dev/null +++ b/.github/release-debian-v3 @@ -0,0 +1 @@ +11 \ No newline at end of file diff --git a/.github/workflows/release-debian-v3.yml b/.github/workflows/release-debian-v3.yml new file mode 100755 index 0000000..c8de2ec --- /dev/null +++ b/.github/workflows/release-debian-v3.yml @@ -0,0 +1,40 @@ +name: PikaOS Package Build & Release (amd64-v3 on debian) + +on: + push: + branches: + - main + paths: + - '.github/release-debian-v3' + +jobs: + build: + runs-on: ubuntu-latest + container: + image: debian:sid + volumes: + - /proc:/proc + options: --privileged -it + + steps: + - name: Update APT Cache + run: apt-get update -y && apt install -y git devscripts dh-make nodejs npm sudo rsync ssh + + - uses: actions/checkout@v3 + + - name: Install SSH key + uses: shimataro/ssh-key-action@v2 + with: + key: ${{ secrets.SSH_KEY }} + name: id_rsa + known_hosts: ${{ secrets.KNOWN_HOSTS }} + if_key_exists: replace + + - name: Set Build Config + run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh + + - name: Build Package + run: ./main.sh + + - name: Release Package + run: ./release.sh