35 lines
702 B
YAML
35 lines
702 B
YAML
name: Process Intel Official Repository (Pigeon)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.github/pigeon-intel'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ubuntu:latest
|
|
volumes:
|
|
- /proc:/proc
|
|
options: --privileged -it
|
|
|
|
steps:
|
|
- name: Install Some essentials
|
|
run: apt-get install -y npm rsync nodejs
|
|
|
|
- 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: Pika Package Processor Script
|
|
run: ./pigeon-intel.sh
|