diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 63b95c72..360c4f30 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -95,12 +95,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v1 + uses: actions/checkout@v2 with: fetch-depth: 1 - name: Build image - run: docker build -t roadrunner -f Dockerfile . + run: docker build -t rr:local -f Dockerfile . - name: Try to execute - run: docker run --rm roadrunner -v + run: docker run --rm rr:local -v |