diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2021-05-05 13:29:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-05 13:29:49 +0200 |
commit | 0f7f313d847e8e36e9fb3c4e576619a3af3bfe56 (patch) | |
tree | c49de4722a3cc074a62d8fc449ce429f14d0458a /.github | |
parent | a0f46219d3279b8347c0ccd3a87e719bc3d579d2 (diff) | |
download | numpy-0f7f313d847e8e36e9fb3c4e576619a3af3bfe56.tar.gz |
CI: fix the GitHub Actions trigger in docker.yml (#18912)
Also remove `tags: *`, this is unnecessary. This mirrors the
fix in SciPy, so should work. Somehow GitHub Actions no longer
likes `./` at the start of a path.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docker.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 52d78a38d..cc4950590 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -5,10 +5,8 @@ on: branches: - main paths: - - './environment.yml' - tags: - - '*' - + - 'environment.yml' + jobs: build: name: Build base Docker image @@ -56,4 +54,4 @@ jobs: numpy/numpy-dev:${{ steps.getrefs.outputs.date }}-${{ steps.getrefs.outputs.branch}}-${{ steps.getrefs.outputs.sha8 }}, numpy/numpy-dev:latest - name: Image digest # Return details of the image build: sha and shell - run: echo ${{ steps.docker_build.outputs.digest }}
\ No newline at end of file + run: echo ${{ steps.docker_build.outputs.digest }} |