Skip to content

Commit

Permalink
Add pre-build step in docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cosimomeli committed Oct 10, 2023
1 parent 09e123c commit fd0f76b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,16 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
GH_ACCESS_TOKEN: ${{ secrets.REPO_PRIVATE_READ_PAT }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run pre-build
run: |
if test -f "Makefile"; then
make ci-pre-build
fi
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
Expand Down

0 comments on commit fd0f76b

Please sign in to comment.