Use locally checked out repo #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Owlbot Docker image | |
on: | |
push: | |
branches: [ "dockerize" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: 'owlbot-repo' | |
- name: Build the Docker image | |
run: docker build . --file owlbot-repo/Dockerfile --tag owlbot:1 |