f
All checks were successful
PikaOS Package Build & Release (amd64-v3 on debian) / build (push) Successful in 12m11s
All checks were successful
PikaOS Package Build & Release (amd64-v3 on debian) / build (push) Successful in 12m11s
This commit is contained in:
parent
e232b4a5e0
commit
798a01fe84
1
.github/release-debian-v3
vendored
Normal file
1
.github/release-debian-v3
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
11
|
40
.github/workflows/release-debian-v3.yml
vendored
Executable file
40
.github/workflows/release-debian-v3.yml
vendored
Executable file
@ -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
|
Loading…
Reference in New Issue
Block a user