Skip to content

Commit

Permalink
added workflow to build latest image manually
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Mar 11, 2024
1 parent 004755b commit 88c1b49
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build-dev-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

name: Build latest image

on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

permissions:
contents: write

jobs:

check_source:
name: "Run code checks"
uses: ./.github/workflows/_shared-check.yaml

build_binaries:
name: "Build Assertoor"
needs: [check_source]
uses: ./.github/workflows/_shared-build.yaml
with:
ref: ${{ github.sha }}
release: "snapshot"
docker: true
docker_repository: "ethpandaops/assertoor"
docker_tag_prefix: "master"
additional_tags: "['master','master-latest','latest']"
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}

0 comments on commit 88c1b49

Please sign in to comment.