nightly-merge action fix after tag (possible tag action script error?) #91
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: Docker build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
docker: | |
name: 'Docker Image' | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ needs.select_environment.outputs.repository }} | |
ref: ${{ needs.select_environment.outputs.ref }} | |
- name: Build Docker Image | |
id: build_docker_image | |
run: | | |
cd docker | |
docker build -t yarp:ubuntu22.04 . |