Build and Upload meson blint-db 0.1.0 #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Upload meson blint-db 0.1.0 | |
on: | |
schedule: | |
- cron: "0 */12 * * *" | |
workflow_dispatch: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: appthreat/blintdb | |
jobs: | |
builder-meson-tst: | |
runs-on: ['self-hosted', 'ubuntu', 'arm64'] | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: AppThreat/blint-db | |
path: blint-db | |
- name: Install dependencies | |
run: | | |
pwd | |
[ -d venv ] || python3 -m venv venv | |
source venv/bin/activate | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine build | |
cd blint-db && python -m pip install . | |
pwd | |
- name: Clean up previous | |
run: | | |
pwd | |
cd blint-db | |
pwd | |
rm -f info.log | |
rm -f blint.db | |
- name: Build and upload db | |
run: | | |
pwd | |
mkdir -p temp | |
source venv/bin/activate | |
cd blint-db/ | |
pwd | |
python blint_db/cli.py --clean-start -f -Z1 | |
python ./.oras/orasclient.py | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_USERNAME: ${{ github.actor }} |