Fix typo in upgrade 35 #209
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: LDP Build Workflow | |
on: [push, pull_request] | |
jobs: | |
build-ldp: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build LDP | |
run: docker build -t ldp:${GITHUB_SHA}-${GITHUB_RUN_NUMBER} --file Dockerfile . | |
- name: Run LDP | |
run: docker run ldp:${GITHUB_SHA}-${GITHUB_RUN_NUMBER} help | |