Skip to content

Commit

Permalink
Build and tag container with unblob as generic carver (#119)
Browse files Browse the repository at this point in the history
* added action to build extractor image based on unblob-2 branch
  • Loading branch information
dorpvom committed Apr 19, 2023
1 parent 2f9b2c1 commit 9383ab0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-unblob-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Publish Docker image based on unblob-2 branch

on:
push:
branches: ['unblob-2']
workflow_dispatch:

jobs:
build-and-publish-image:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: fkiecad/fact_extractor:unblob

0 comments on commit 9383ab0

Please sign in to comment.