Skip to content

Commit

Permalink
Migrate to GitHub Actions from CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
leee committed Dec 18, 2023
1 parent 9d1fadb commit 8b2f357
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .circleci/config.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/check-packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: check-packages

on: [push, pull_request]

jobs:
check-sigs:
runs-on: ubuntu-latest
container:
image: fedora:37
options: --user root
steps:
- name: Install RPM packaging dependencies
run: yum -y update && yum -y install git git-lfs
- run: cat /etc/*release
- run: |
cat /etc/*release
- uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- run: git lfs install
- run: git lfs checkout
- run: git lfs pull
- name: Verify signatures on all RPMs
run: |
git lfs install && git lfs checkout && git lfs pull
gpg --import fpf-yum-tools-archive-keyring.gpg
./scripts/publish.py --verify --all

0 comments on commit 8b2f357

Please sign in to comment.