Skip to content

chore: Update dependencies and version numbers #34

chore: Update dependencies and version numbers

chore: Update dependencies and version numbers #34

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ trunk ]
pull_request:
branches: [ trunk ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install packages
run: pip install -r requirements.txt
- name: Setup dist
run: python setup.py sdist
- uses: actions/upload-artifact@v1
with:
name: frida-gadget
path: dist
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- name: Build and push
uses: docker/build-push-action@v2
id: docker_build
with:
context: .
file: Dockerfile
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/frida-gadget:latest