Skip to content

Allow access to go internal modules #232

Allow access to go internal modules

Allow access to go internal modules #232

name: build-markdown-index
on:
pull_request_target:
types: [ opened, synchronize, reopened, ready_for_review ]
paths:
- "cmd/markdown-index/*.go"
- "cmd/markdown-index/Dockerfile"
- "pkg/**"
- "go.mod"
- "go.sum"
push:
branches:
- main
paths:
- "cmd/markdown-index/*.go"
- "cmd/markdown-index/Dockerfile"
- "pkg/**"
- "go.mod"
- "go.sum"
workflow_dispatch: {}
jobs:
build-image:
uses: ./.github/workflows/image-builder.yml
with:
name: markdown-index
dockerfile: cmd/markdown-index/Dockerfile
context: .
print-image:
runs-on: ubuntu-latest
needs: build-image
steps:
- name: Print image
run: echo "Image built ${{ needs.build-image.outputs.images }}"