Skip to content

OSINT commands

OSINT commands #30

Workflow file for this run

name: Docker Workflow
on:
push:
tags: ['v*.*.*']
branches: [master]
pull_request:
branches: [master]
workflow_call:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
name: Build Docker Image
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
permissions:
contents: read
steps:
- name: Repository Checkout
uses: actions/checkout@v3
-
name: Migrate database
run: |
cargo install sqlx-cli --no-default-features --features postgres,sqlite,runtime-tokio,tls-rustls,macros,sqlite,postgres,chrono
sqlx database create
sqlx migrate --source migrations/ run
cargo sqlx prepare -- --tests
- name: Build Docker Image
run: docker build . -t ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
push:
name: Build & Push Docker Image
runs-on: ubuntu-latest
if: github.event_name == 'push' || (github.event_name == 'workflow_call' && github.event.inputs.trigger == 'build')
permissions:
contents: read
packages: write
steps:
- name: Repository Checkout
uses: actions/checkout@v3
- name: Registry Login
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Git Metadata
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
-
name: Migrate database
env:
DATABASE_URL: sqlite://./data/crackedmusic.db
run: |
cargo install sqlx-cli --no-default-features --features sqlite,postgres
sqlx database create
sqlx migrate --source migrations/ run
cargo sqlx prepare -- --tests
- name: Build & Push Docker Image
uses: docker/build-push-action@v4
with:
context: .
push: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}