pin-generation/.github/workflows/gen-apt-pins.yml
Ward from fusion-voyager-3 203c67dd58
Some checks failed
Generate and commit APT Pins / build (push) Successful in 1m36s
Generate and commit i386 whitelist / build (push) Failing after 21s
add actions and update src names from qa
2024-10-13 21:03:23 +03:00

27 lines
782 B
YAML

name: Generate and commit APT Pins
on:
push:
branches:
- main
paths:
- '.github/gen-apt-pins'
jobs:
build:
runs-on: self-hosted
container:
image: ghcr.io/pikaos-linux/pika-base-debian-container:latest
volumes:
- /proc:/proc
options: --privileged -it
steps:
- uses: actions/checkout@v3
- name: Generate apt pin and json files
run: chmod +x ./gen-apt-pins.sh && ./gen-apt-pins.sh
- name: Setup git and push
run: git config --global user.name 'Github Workflow Action' && git config --global user.email 'hotrod.master@hotmail.com' && git config --global --add safe.directory /__w/pin-generation/pin-generation && git add . && git commit -am"Commited by GH Action - gen-apt-pins.yml" && git push